diff --git a/ChangeLog.md b/ChangeLog.md index 057164b8ff..aa9e4d1827 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Update logo ([#1208](https://github.com/dotnet/roslynator/pull/1208)). -- Migrate to .NET Foundation ([#1206](https://github.com/dotnet/roslynator/pull/1206)) +- Migrate to .NET Foundation ([#1206](https://github.com/dotnet/roslynator/pull/1206), [#1207](https://github.com/dotnet/roslynator/pull/1207)). ### Fixed diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/AddBracesCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/AddBracesCodeFixProvider.cs index cfb1ce395a..2eb93d3a49 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/AddBracesCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/AddBracesCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/AddBracesToIfElseCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/AddBracesToIfElseCodeFixProvider.cs index d8118f3bfa..7c774b76f6 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/AddBracesToIfElseCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/AddBracesToIfElseCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/AddExceptionToDocumentationCommentCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/AddExceptionToDocumentationCommentCodeFixProvider.cs index 7c4c2e4d29..4a43197e3e 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/AddExceptionToDocumentationCommentCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/AddExceptionToDocumentationCommentCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/AddOrRemoveParenthesesWhenCreatingNewObjectCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/AddOrRemoveParenthesesWhenCreatingNewObjectCodeFixProvider.cs index 7790eca2fe..3a6f40857c 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/AddOrRemoveParenthesesWhenCreatingNewObjectCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/AddOrRemoveParenthesesWhenCreatingNewObjectCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/AddOrRemoveTrailingCommaCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/AddOrRemoveTrailingCommaCodeFixProvider.cs index 37db2fc2ab..0275c60d6d 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/AddOrRemoveTrailingCommaCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/AddOrRemoveTrailingCommaCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/AddParagraphToDocumentationCommentCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/AddParagraphToDocumentationCommentCodeFixProvider.cs index 82dc7b9db1..b793710b1c 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/AddParagraphToDocumentationCommentCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/AddParagraphToDocumentationCommentCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/AddParenthesesWhenNecessaryCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/AddParenthesesWhenNecessaryCodeFixProvider.cs index 26c8108e6a..ad0ebd30a1 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/AddParenthesesWhenNecessaryCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/AddParenthesesWhenNecessaryCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/AnonymousMethodCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/AnonymousMethodCodeFixProvider.cs index 022374b473..eaba928a56 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/AnonymousMethodCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/AnonymousMethodCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/AssignmentExpressionCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/AssignmentExpressionCodeFixProvider.cs index a57d841393..6d50fd5faf 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/AssignmentExpressionCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/AssignmentExpressionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/AttributeArgumentListCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/AttributeArgumentListCodeFixProvider.cs index 4d11edea3f..e45c9c3347 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/AttributeArgumentListCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/AttributeArgumentListCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/AvoidBoxingOfValueTypeCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/AvoidBoxingOfValueTypeCodeFixProvider.cs index df786b83ee..de55625f88 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/AvoidBoxingOfValueTypeCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/AvoidBoxingOfValueTypeCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/AvoidNullReferenceExceptionCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/AvoidNullReferenceExceptionCodeFixProvider.cs index 9dbb94c2fb..3bf7a983ab 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/AvoidNullReferenceExceptionCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/AvoidNullReferenceExceptionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/AwaitExpressionCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/AwaitExpressionCodeFixProvider.cs index f642a34fb9..027c6e7395 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/AwaitExpressionCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/AwaitExpressionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/BaseArgumentListCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/BaseArgumentListCodeFixProvider.cs index aaaeae4015..277e13265e 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/BaseArgumentListCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/BaseArgumentListCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/BaseCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/BaseCodeFixProvider.cs index 84dcea3b10..0f1b789327 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/BaseCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/BaseCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CodeFixes; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/BaseTypeCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/BaseTypeCodeFixProvider.cs index 6ddf67f606..a02c27e53a 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/BaseTypeCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/BaseTypeCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/BinaryExpressionCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/BinaryExpressionCodeFixProvider.cs index b60583e14d..1817aca8ea 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/BinaryExpressionCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/BinaryExpressionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/BlockCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/BlockCodeFixProvider.cs index c1b5176661..e87ab3345c 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/BlockCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/BlockCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/CaseSwitchLabelCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/CaseSwitchLabelCodeFixProvider.cs index ac79858056..cd8fc86fe0 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/CaseSwitchLabelCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/CaseSwitchLabelCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/CastExpressionCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/CastExpressionCodeFixProvider.cs index 5b27af3bf0..1c1bd8025d 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/CastExpressionCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/CastExpressionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ClassDeclarationCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ClassDeclarationCodeFixProvider.cs index 90d086ca82..a0bec336f2 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ClassDeclarationCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ClassDeclarationCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/CompositeEnumValueContainsUndefinedFlagCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/CompositeEnumValueContainsUndefinedFlagCodeFixProvider.cs index b5d1cfe062..c58b5a1fc7 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/CompositeEnumValueContainsUndefinedFlagCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/CompositeEnumValueContainsUndefinedFlagCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ConditionalExpressionCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ConditionalExpressionCodeFixProvider.cs index 695b2cbc75..b529a189fe 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ConditionalExpressionCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ConditionalExpressionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ConstructorDeclarationCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ConstructorDeclarationCodeFixProvider.cs index 264330f930..daa3e723c1 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ConstructorDeclarationCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ConstructorDeclarationCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ConvertLambdaExpressionBodyToExpressionBodyCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ConvertLambdaExpressionBodyToExpressionBodyCodeFixProvider.cs index f0ba6d631b..4d43f598e4 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ConvertLambdaExpressionBodyToExpressionBodyCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ConvertLambdaExpressionBodyToExpressionBodyCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/DeclareEachAttributeSeparatelyCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/DeclareEachAttributeSeparatelyCodeFixProvider.cs index 03ffddf9ca..160a5ffc5a 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/DeclareEachAttributeSeparatelyCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/DeclareEachAttributeSeparatelyCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/DeclareEnumMemberWithZeroValueCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/DeclareEnumMemberWithZeroValueCodeFixProvider.cs index 95724ddf5f..a0a03e84cb 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/DeclareEnumMemberWithZeroValueCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/DeclareEnumMemberWithZeroValueCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/DeclareTypeInsideNamespaceCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/DeclareTypeInsideNamespaceCodeFixProvider.cs index 02e9f003a5..d4b5123272 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/DeclareTypeInsideNamespaceCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/DeclareTypeInsideNamespaceCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/DefaultExpressionCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/DefaultExpressionCodeFixProvider.cs index c749acfd99..d0a60de8bf 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/DefaultExpressionCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/DefaultExpressionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/DestructorDeclarationCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/DestructorDeclarationCodeFixProvider.cs index 43e2ca2ca8..2d03642e56 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/DestructorDeclarationCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/DestructorDeclarationCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/DirectiveTriviaCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/DirectiveTriviaCodeFixProvider.cs index b5c8abf5a6..fa475d2e3d 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/DirectiveTriviaCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/DirectiveTriviaCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/DoStatementCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/DoStatementCodeFixProvider.cs index bfed0ebe21..f91d74c548 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/DoStatementCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/DoStatementCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/DocumentCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/DocumentCodeFixProvider.cs index 60d2cf57fc..3af179e809 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/DocumentCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/DocumentCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/DocumentationCommentCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/DocumentationCommentCodeFixProvider.cs index a9e7aeac41..2baf4d5a51 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/DocumentationCommentCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/DocumentationCommentCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/DuplicateWordInCommentCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/DuplicateWordInCommentCodeFixProvider.cs index 904669f5ba..c2608d2859 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/DuplicateWordInCommentCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/DuplicateWordInCommentCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ElseClauseCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ElseClauseCodeFixProvider.cs index ff1fd349d7..d97ceff923 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ElseClauseCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ElseClauseCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/EmptyStatementCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/EmptyStatementCodeFixProvider.cs index 7e2e311c43..8b98035e5a 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/EmptyStatementCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/EmptyStatementCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/EndRegionDirectiveTriviaCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/EndRegionDirectiveTriviaCodeFixProvider.cs index 8f50511e9b..7208664136 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/EndRegionDirectiveTriviaCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/EndRegionDirectiveTriviaCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/EnumDeclarationCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/EnumDeclarationCodeFixProvider.cs index 18078630eb..178d692b11 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/EnumDeclarationCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/EnumDeclarationCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/EnumMemberDeclarationCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/EnumMemberDeclarationCodeFixProvider.cs index 93203ca5d6..1c282cec2e 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/EnumMemberDeclarationCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/EnumMemberDeclarationCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ExpressionCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ExpressionCodeFixProvider.cs index f96cdf6bad..f0eecabcc4 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ExpressionCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ExpressionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ExtractMemberToNewDocumentCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ExtractMemberToNewDocumentCodeFixProvider.cs index 1e43483908..2f178cd00d 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ExtractMemberToNewDocumentCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ExtractMemberToNewDocumentCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/FinallyClauseCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/FinallyClauseCodeFixProvider.cs index 1859f99b28..2cddf8731e 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/FinallyClauseCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/FinallyClauseCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ForStatementCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ForStatementCodeFixProvider.cs index 18e439311e..10557bd452 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ForStatementCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ForStatementCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/IfStatementCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/IfStatementCodeFixProvider.cs index 8877aae8ab..972fef7562 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/IfStatementCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/IfStatementCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ImplementNonGenericCounterpartCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ImplementNonGenericCounterpartCodeFixProvider.cs index 3afaed84f3..3c22c11414 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ImplementNonGenericCounterpartCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ImplementNonGenericCounterpartCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/InitializerCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/InitializerCodeFixProvider.cs index a21d793fad..21dee779cc 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/InitializerCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/InitializerCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/InterpolatedStringCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/InterpolatedStringCodeFixProvider.cs index d135f56469..eaeabf700e 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/InterpolatedStringCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/InterpolatedStringCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/InterpolationCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/InterpolationCodeFixProvider.cs index 751dc18f00..427407627a 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/InterpolationCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/InterpolationCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/InvalidArgumentNullCheckCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/InvalidArgumentNullCheckCodeFixProvider.cs index e433955c7c..1be463869a 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/InvalidArgumentNullCheckCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/InvalidArgumentNullCheckCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/InvocationExpressionCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/InvocationExpressionCodeFixProvider.cs index 68e9c49cb1..a297ae7f46 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/InvocationExpressionCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/InvocationExpressionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/LocalDeclarationStatementCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/LocalDeclarationStatementCodeFixProvider.cs index e58760aed7..27253d3a37 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/LocalDeclarationStatementCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/LocalDeclarationStatementCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/LockStatementCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/LockStatementCodeFixProvider.cs index e41243672f..b11207d1e4 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/LockStatementCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/LockStatementCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/MarkLocalVariableAsConstCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/MarkLocalVariableAsConstCodeFixProvider.cs index cf0683e808..0590556488 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/MarkLocalVariableAsConstCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/MarkLocalVariableAsConstCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/MarkTypeWithDebuggerDisplayAttributeCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/MarkTypeWithDebuggerDisplayAttributeCodeFixProvider.cs index 94bde6a951..2284fe340a 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/MarkTypeWithDebuggerDisplayAttributeCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/MarkTypeWithDebuggerDisplayAttributeCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/MemberDeclarationCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/MemberDeclarationCodeFixProvider.cs index 036357a8ac..9638603ce8 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/MemberDeclarationCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/MemberDeclarationCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/NamespaceDeclarationCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/NamespaceDeclarationCodeFixProvider.cs index 1178fb39a8..014fce1498 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/NamespaceDeclarationCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/NamespaceDeclarationCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/NormalizeNullCheckProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/NormalizeNullCheckProvider.cs index 344f23d955..a2a1ecffac 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/NormalizeNullCheckProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/NormalizeNullCheckProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/NormalizeUsageOfInfiniteLoopCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/NormalizeUsageOfInfiniteLoopCodeFixProvider.cs index 90ab0fbb83..ad0dc42976 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/NormalizeUsageOfInfiniteLoopCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/NormalizeUsageOfInfiniteLoopCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ObjectCreationExpressionCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ObjectCreationExpressionCodeFixProvider.cs index 50bcb17c5c..dd81913b5a 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ObjectCreationExpressionCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ObjectCreationExpressionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/OptimizeLinqMethodCallCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/OptimizeLinqMethodCallCodeFixProvider.cs index aad0fe3874..13b12848d4 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/OptimizeLinqMethodCallCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/OptimizeLinqMethodCallCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/OptimizeMethodCallCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/OptimizeMethodCallCodeFixProvider.cs index a169d84a2b..34d4bafcf7 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/OptimizeMethodCallCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/OptimizeMethodCallCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/OptimizeStringBuilderAppendCallCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/OptimizeStringBuilderAppendCallCodeFixProvider.cs index 6221009647..bd1d9dc4e1 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/OptimizeStringBuilderAppendCallCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/OptimizeStringBuilderAppendCallCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/OrderElementsInDocumentationCommentCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/OrderElementsInDocumentationCommentCodeFixProvider.cs index eb74efbea4..f8ef25d81b 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/OrderElementsInDocumentationCommentCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/OrderElementsInDocumentationCommentCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/OrderTypeParameterConstraintsCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/OrderTypeParameterConstraintsCodeFixProvider.cs index 48976a1412..c80db7bace 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/OrderTypeParameterConstraintsCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/OrderTypeParameterConstraintsCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ParameterCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ParameterCodeFixProvider.cs index 1052b29bc1..339d1c0a88 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ParameterCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ParameterCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ParameterNameDiffersFromBaseCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ParameterNameDiffersFromBaseCodeFixProvider.cs index b8a34f1061..14bc6c13b8 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ParameterNameDiffersFromBaseCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ParameterNameDiffersFromBaseCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ParenthesizedExpressionCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ParenthesizedExpressionCodeFixProvider.cs index daffbfd060..1d77e98802 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ParenthesizedExpressionCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ParenthesizedExpressionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/PropertyDeclarationCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/PropertyDeclarationCodeFixProvider.cs index 7cafe99706..79645c4a95 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/PropertyDeclarationCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/PropertyDeclarationCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/RecordDeclarationCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/RecordDeclarationCodeFixProvider.cs index 17110d843a..28c7c831e8 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/RecordDeclarationCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/RecordDeclarationCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/RegionDirectiveTriviaCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/RegionDirectiveTriviaCodeFixProvider.cs index eea86e24a0..a1dec29eb1 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/RegionDirectiveTriviaCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/RegionDirectiveTriviaCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveBracesCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveBracesCodeFixProvider.cs index 1e936f9a5a..3eb5f3a1a7 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveBracesCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveBracesCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveBracesFromIfElseCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveBracesFromIfElseCodeFixProvider.cs index 3813daf819..303a10e1ef 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveBracesFromIfElseCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveBracesFromIfElseCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveEmptyInitializerCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveEmptyInitializerCodeFixProvider.cs index 434775e15b..541bc825f4 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveEmptyInitializerCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveEmptyInitializerCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveEmptySyntaxCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveEmptySyntaxCodeFixProvider.cs index d9b3ee604b..12735eae40 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveEmptySyntaxCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveEmptySyntaxCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveEnumDefaultBaseTypeCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveEnumDefaultBaseTypeCodeFixProvider.cs index a6f3e1797b..cd40d15cc7 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveEnumDefaultBaseTypeCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveEnumDefaultBaseTypeCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveOriginalExceptionCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveOriginalExceptionCodeFixProvider.cs index bba276a585..8b4aec6745 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveOriginalExceptionCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveOriginalExceptionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemovePartialModifierFromTypeWithSinglePartCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemovePartialModifierFromTypeWithSinglePartCodeFixProvider.cs index 4a7e4a87da..374785b177 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemovePartialModifierFromTypeWithSinglePartCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemovePartialModifierFromTypeWithSinglePartCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveRedundantAssignmentCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveRedundantAssignmentCodeFixProvider.cs index 014f282594..bfcf32af2c 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveRedundantAssignmentCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveRedundantAssignmentCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveRedundantAsyncAwaitCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveRedundantAsyncAwaitCodeFixProvider.cs index 2e033c1a1b..37cf841c08 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveRedundantAsyncAwaitCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveRedundantAsyncAwaitCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveRedundantBooleanLiteralCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveRedundantBooleanLiteralCodeFixProvider.cs index 4a64ef9392..4d902b9194 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveRedundantBooleanLiteralCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveRedundantBooleanLiteralCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveRedundantCastCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveRedundantCastCodeFixProvider.cs index 672047c79f..9ae760fb6b 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveRedundantCastCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveRedundantCastCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveUnnecessaryElseCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveUnnecessaryElseCodeFixProvider.cs index 62c1987796..f165370792 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveUnnecessaryElseCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/RemoveUnnecessaryElseCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ReturnCompletedTaskInsteadOfNullCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ReturnCompletedTaskInsteadOfNullCodeFixProvider.cs index 72d28ddd59..041479ccfc 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ReturnCompletedTaskInsteadOfNullCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ReturnCompletedTaskInsteadOfNullCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ReturnCompletedTaskInsteadOfNullCodeFixProvider2.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ReturnCompletedTaskInsteadOfNullCodeFixProvider2.cs index 07ca146b9e..ac2a3b2644 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ReturnCompletedTaskInsteadOfNullCodeFixProvider2.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ReturnCompletedTaskInsteadOfNullCodeFixProvider2.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/SimplifyBooleanComparisonCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/SimplifyBooleanComparisonCodeFixProvider.cs index 3e8a4781ef..418d6c7d89 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/SimplifyBooleanComparisonCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/SimplifyBooleanComparisonCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/SimplifyCodeBranchingCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/SimplifyCodeBranchingCodeFixProvider.cs index 35bc52cdbe..7d2a2ff488 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/SimplifyCodeBranchingCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/SimplifyCodeBranchingCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/SimplifyLogicalNegationCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/SimplifyLogicalNegationCodeFixProvider.cs index 1536aa5aa3..d441368b8f 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/SimplifyLogicalNegationCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/SimplifyLogicalNegationCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/SimplifyNestedUsingStatementCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/SimplifyNestedUsingStatementCodeFixProvider.cs index b33fe38204..7986a48fa9 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/SimplifyNestedUsingStatementCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/SimplifyNestedUsingStatementCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/SimplifyNullableOfTCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/SimplifyNullableOfTCodeFixProvider.cs index caf5dda207..8aba819fb3 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/SimplifyNullableOfTCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/SimplifyNullableOfTCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/SingleLineDocumentationCommentTriviaCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/SingleLineDocumentationCommentTriviaCodeFixProvider.cs index 1f85acee32..2627640b1f 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/SingleLineDocumentationCommentTriviaCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/SingleLineDocumentationCommentTriviaCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/StatementCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/StatementCodeFixProvider.cs index 8378067ab4..fd6183f19c 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/StatementCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/StatementCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/SwitchSectionCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/SwitchSectionCodeFixProvider.cs index cd2f0c6e8b..2291c55e65 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/SwitchSectionCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/SwitchSectionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/TokenCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/TokenCodeFixProvider.cs index 187a703320..20b8b7f305 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/TokenCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/TokenCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/TypeCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/TypeCodeFixProvider.cs index 6f993b5d9e..30a54a83b0 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/TypeCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/TypeCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/TypeParameterCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/TypeParameterCodeFixProvider.cs index c302b3eb77..196763c98d 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/TypeParameterCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/TypeParameterCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UnnecessaryAssignmentCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UnnecessaryAssignmentCodeFixProvider.cs index 494e7ca86c..03d6255ad4 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UnnecessaryAssignmentCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UnnecessaryAssignmentCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UnnecessaryEnumFlagCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UnnecessaryEnumFlagCodeFixProvider.cs index e289836def..b25fa0a1d3 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UnnecessaryEnumFlagCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UnnecessaryEnumFlagCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UnnecessaryExplicitUseOfEnumeratorCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UnnecessaryExplicitUseOfEnumeratorCodeFixProvider.cs index 604f4884f4..19ad5e8444 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UnnecessaryExplicitUseOfEnumeratorCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UnnecessaryExplicitUseOfEnumeratorCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UnnecessaryUnsafeContextCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UnnecessaryUnsafeContextCodeFixProvider.cs index a592af5c76..9d2b0c5800 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UnnecessaryUnsafeContextCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UnnecessaryUnsafeContextCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UnnecessaryUsageOfVerbatimStringLiteralCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UnnecessaryUsageOfVerbatimStringLiteralCodeFixProvider.cs index fb021c2985..bf3fbe5e8e 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UnnecessaryUsageOfVerbatimStringLiteralCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UnnecessaryUsageOfVerbatimStringLiteralCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UnusedMemberCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UnusedMemberCodeFixProvider.cs index 14363508e0..6db4f8bd9b 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UnusedMemberCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UnusedMemberCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UnusedParameterCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UnusedParameterCodeFixProvider.cs index 2dab1f38be..ee00c84aea 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UnusedParameterCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UnusedParameterCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseAnonymousFunctionOrMethodGroupCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseAnonymousFunctionOrMethodGroupCodeFixProvider.cs index bb3a63e3e6..d84219c2c8 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseAnonymousFunctionOrMethodGroupCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseAnonymousFunctionOrMethodGroupCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseAsyncAwaitCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseAsyncAwaitCodeFixProvider.cs index 008de13524..e63f949aa3 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseAsyncAwaitCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseAsyncAwaitCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseAutoPropertyCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseAutoPropertyCodeFixProvider.cs index ea7bb17b75..a8ecc9512f 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseAutoPropertyCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseAutoPropertyCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseBlockBodyOrExpressionBodyCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseBlockBodyOrExpressionBodyCodeFixProvider.cs index da8dba4279..d581a1df22 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseBlockBodyOrExpressionBodyCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseBlockBodyOrExpressionBodyCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseCoalesceExpressionCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseCoalesceExpressionCodeFixProvider.cs index ca8f860ade..e93296cc56 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseCoalesceExpressionCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseCoalesceExpressionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseCompoundAssignmentCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseCompoundAssignmentCodeFixProvider.cs index de155be757..242db07bc7 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseCompoundAssignmentCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseCompoundAssignmentCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseConditionalAccessCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseConditionalAccessCodeFixProvider.cs index 35bf316784..365eebd20f 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseConditionalAccessCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseConditionalAccessCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseEmptyStringLiteralOrStringEmptyCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseEmptyStringLiteralOrStringEmptyCodeFixProvider.cs index 5bdc9f9aef..4c704bd5c1 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseEmptyStringLiteralOrStringEmptyCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseEmptyStringLiteralOrStringEmptyCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseExplicitTypeInsteadOfVarCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseExplicitTypeInsteadOfVarCodeFixProvider.cs index 1990b78e19..924853a865 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseExplicitTypeInsteadOfVarCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseExplicitTypeInsteadOfVarCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseExplicitTypeInsteadOfVarInForEachCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseExplicitTypeInsteadOfVarInForEachCodeFixProvider.cs index 0156642c8e..64ad124858 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseExplicitTypeInsteadOfVarInForEachCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseExplicitTypeInsteadOfVarInForEachCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseExplicitlyOrImplicitlyTypedArrayCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseExplicitlyOrImplicitlyTypedArrayCodeFixProvider.cs index 71168874c1..9a0bdd8231 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseExplicitlyOrImplicitlyTypedArrayCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseExplicitlyOrImplicitlyTypedArrayCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseHasFlagMethodOrBitwiseOperatorCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseHasFlagMethodOrBitwiseOperatorCodeFixProvider.cs index b2c83c7c26..158cb51a66 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseHasFlagMethodOrBitwiseOperatorCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseHasFlagMethodOrBitwiseOperatorCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseImplicitOrExplicitObjectCreationCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseImplicitOrExplicitObjectCreationCodeFixProvider.cs index e7248ea6cb..2236a0169c 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseImplicitOrExplicitObjectCreationCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseImplicitOrExplicitObjectCreationCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseIsOperatorInsteadOfAsOperatorCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseIsOperatorInsteadOfAsOperatorCodeFixProvider.cs index 55138163f9..f28d2be289 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseIsOperatorInsteadOfAsOperatorCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseIsOperatorInsteadOfAsOperatorCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseNameOfOperatorCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseNameOfOperatorCodeFixProvider.cs index f7420fe242..62e02c9a72 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseNameOfOperatorCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseNameOfOperatorCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UsePatternMatchingInsteadOfAsAndNullCheckCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UsePatternMatchingInsteadOfAsAndNullCheckCodeFixProvider.cs index 24dbe40caf..b127978906 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UsePatternMatchingInsteadOfAsAndNullCheckCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UsePatternMatchingInsteadOfAsAndNullCheckCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UsePatternMatchingInsteadOfIsAndCastCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UsePatternMatchingInsteadOfIsAndCastCodeFixProvider.cs index 44001c7919..2df0b4135e 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UsePatternMatchingInsteadOfIsAndCastCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UsePatternMatchingInsteadOfIsAndCastCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UsePredefinedTypeCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UsePredefinedTypeCodeFixProvider.cs index 7e35980dc5..e3a0893cca 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UsePredefinedTypeCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UsePredefinedTypeCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseRegexInstanceInsteadOfStaticMethodCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseRegexInstanceInsteadOfStaticMethodCodeFixProvider.cs index 317d9f5f40..338bc03c67 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseRegexInstanceInsteadOfStaticMethodCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseRegexInstanceInsteadOfStaticMethodCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseStringComparisonCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseStringComparisonCodeFixProvider.cs index 5b78756ea4..9fb7bcf35e 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseStringComparisonCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseStringComparisonCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseVarInsteadOfExplicitTypeCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseVarInsteadOfExplicitTypeCodeFixProvider.cs index d25f3ceb5e..bb555259ac 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseVarInsteadOfExplicitTypeCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UseVarInsteadOfExplicitTypeCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UsingDirectiveCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UsingDirectiveCodeFixProvider.cs index e0fd540ed2..80342dc43c 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/UsingDirectiveCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/UsingDirectiveCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ValidateArgumentsCorrectlyCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ValidateArgumentsCorrectlyCodeFixProvider.cs index f6ba7b4042..be8f394817 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/ValidateArgumentsCorrectlyCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/ValidateArgumentsCorrectlyCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/VariableDeclarationCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/VariableDeclarationCodeFixProvider.cs index 819bdadf7f..016a97d0d8 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/VariableDeclarationCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/VariableDeclarationCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/VariableDeclaratorCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/VariableDeclaratorCodeFixProvider.cs index c7f1b689a8..ec07cdc202 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/VariableDeclaratorCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/VariableDeclaratorCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/WhileStatementCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/WhileStatementCodeFixProvider.cs index fb51c3e097..c5add039c2 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/WhileStatementCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/WhileStatementCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/CSharp/CodeFixes/XmlNodeCodeFixProvider.cs b/src/Analyzers.CodeFixes/CSharp/CodeFixes/XmlNodeCodeFixProvider.cs index 306e1aeaec..326b265c05 100644 --- a/src/Analyzers.CodeFixes/CSharp/CodeFixes/XmlNodeCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CSharp/CodeFixes/XmlNodeCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/AbstractTypeShouldNotHavePublicConstructorsRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/AbstractTypeShouldNotHavePublicConstructorsRefactoring.cs index f2ac088570..53c2c463c1 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/AbstractTypeShouldNotHavePublicConstructorsRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/AbstractTypeShouldNotHavePublicConstructorsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/AddBracesRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/AddBracesRefactoring.cs index 119c9ef6a3..3ca15705c1 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/AddBracesRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/AddBracesRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/AddEmptyLineAfterEmbeddedStatementRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/AddEmptyLineAfterEmbeddedStatementRefactoring.cs index 77dbfbe462..2e5f22f020 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/AddEmptyLineAfterEmbeddedStatementRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/AddEmptyLineAfterEmbeddedStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/AddOrRemoveRegionNameRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/AddOrRemoveRegionNameRefactoring.cs index 1b8a6544e5..e4b8d17ecf 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/AddOrRemoveRegionNameRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/AddOrRemoveRegionNameRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/AddSummaryToDocumentationCommentRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/AddSummaryToDocumentationCommentRefactoring.cs index ae99c05521..0205447b17 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/AddSummaryToDocumentationCommentRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/AddSummaryToDocumentationCommentRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Text; using System.Threading; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/AvoidLockingOnPubliclyAccessibleInstanceRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/AvoidLockingOnPubliclyAccessibleInstanceRefactoring.cs index 7636c9f515..df3f6d82f6 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/AvoidLockingOnPubliclyAccessibleInstanceRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/AvoidLockingOnPubliclyAccessibleInstanceRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/AvoidSemicolonAtEndOfDeclarationRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/AvoidSemicolonAtEndOfDeclarationRefactoring.cs index c8d4eceed3..a803197e0f 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/AvoidSemicolonAtEndOfDeclarationRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/AvoidSemicolonAtEndOfDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/AvoidUsageOfForStatementToCreateInfiniteLoopRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/AvoidUsageOfForStatementToCreateInfiniteLoopRefactoring.cs index f476856ea5..7d6c6b27bf 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/AvoidUsageOfForStatementToCreateInfiniteLoopRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/AvoidUsageOfForStatementToCreateInfiniteLoopRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/AvoidUsageOfUsingAliasDirectiveRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/AvoidUsageOfUsingAliasDirectiveRefactoring.cs index fa7c8705b4..cfd92af947 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/AvoidUsageOfUsingAliasDirectiveRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/AvoidUsageOfUsingAliasDirectiveRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/CallThenByInsteadOfOrderByRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/CallThenByInsteadOfOrderByRefactoring.cs index 0d5eabc31a..e888b417dd 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/CallThenByInsteadOfOrderByRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/CallThenByInsteadOfOrderByRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/CombineEnumerableWhereMethodChainRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/CombineEnumerableWhereMethodChainRefactoring.cs index 2d043cbfeb..e90c89dc0c 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/CombineEnumerableWhereMethodChainRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/CombineEnumerableWhereMethodChainRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/ConvertDoToWhileRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/ConvertDoToWhileRefactoring.cs index be7440380e..dc215654c5 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/ConvertDoToWhileRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/ConvertDoToWhileRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/ConvertInterpolatedStringToConcatenationRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/ConvertInterpolatedStringToConcatenationRefactoring.cs index 931ec9c73e..2a62cb77b3 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/ConvertInterpolatedStringToConcatenationRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/ConvertInterpolatedStringToConcatenationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/DeclareEachAttributeSeparatelyRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/DeclareEachAttributeSeparatelyRefactoring.cs index 8f57f7c144..8469429cee 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/DeclareEachAttributeSeparatelyRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/DeclareEachAttributeSeparatelyRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/DeclareUsingDirectiveOnTopLevelRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/DeclareUsingDirectiveOnTopLevelRefactoring.cs index bdcb61afc8..0346a0e04a 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/DeclareUsingDirectiveOnTopLevelRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/DeclareUsingDirectiveOnTopLevelRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/DefaultLabelShouldBeLastLabelInSwitchSectionRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/DefaultLabelShouldBeLastLabelInSwitchSectionRefactoring.cs index 3e8f1e36c7..f4746ea1d3 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/DefaultLabelShouldBeLastLabelInSwitchSectionRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/DefaultLabelShouldBeLastLabelInSwitchSectionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/Documentation/AddParamElementToDocumentationCommentRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/Documentation/AddParamElementToDocumentationCommentRefactoring.cs index 78f1b6518d..5e7dd4f2c2 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/Documentation/AddParamElementToDocumentationCommentRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/Documentation/AddParamElementToDocumentationCommentRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/Documentation/AddTypeParamElementToDocumentationCommentRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/Documentation/AddTypeParamElementToDocumentationCommentRefactoring.cs index c0dbf74bf9..96fbc38b5a 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/Documentation/AddTypeParamElementToDocumentationCommentRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/Documentation/AddTypeParamElementToDocumentationCommentRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/Documentation/DocumentationCommentRefactoring`1.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/Documentation/DocumentationCommentRefactoring`1.cs index c931288229..62ee39ec98 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/Documentation/DocumentationCommentRefactoring`1.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/Documentation/DocumentationCommentRefactoring`1.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Diagnostics; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/Documentation/ElementInfo.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/Documentation/ElementInfo.cs index 67f86dc793..ae4781fd19 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/Documentation/ElementInfo.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/Documentation/ElementInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/Documentation/NewLinePosition.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/Documentation/NewLinePosition.cs index 5662d6e15c..44bdb5decc 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/Documentation/NewLinePosition.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/Documentation/NewLinePosition.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Analysis.Documentation; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/Documentation/ParamElementInfo.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/Documentation/ParamElementInfo.cs index a63fefaecd..c40f806e71 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/Documentation/ParamElementInfo.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/Documentation/ParamElementInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/Documentation/TypeParamElementInfo.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/Documentation/TypeParamElementInfo.cs index 8797a0d71d..6d9c489b8f 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/Documentation/TypeParamElementInfo.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/Documentation/TypeParamElementInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/FormatAccessorListRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/FormatAccessorListRefactoring.cs index e1d5b41bac..028893629e 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/FormatAccessorListRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/FormatAccessorListRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/FormatBinaryOperatorOnNextLineRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/FormatBinaryOperatorOnNextLineRefactoring.cs index a8dd343356..8c7437763d 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/FormatBinaryOperatorOnNextLineRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/FormatBinaryOperatorOnNextLineRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/FormatEachStatementOnSeparateLineRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/FormatEachStatementOnSeparateLineRefactoring.cs index c0d9eafd3b..8a3db01a4e 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/FormatEachStatementOnSeparateLineRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/FormatEachStatementOnSeparateLineRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/FormatEmptyBlockRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/FormatEmptyBlockRefactoring.cs index 710502e6a5..786b4fd8e9 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/FormatEmptyBlockRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/FormatEmptyBlockRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/JoinStringExpressionsRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/JoinStringExpressionsRefactoring.cs index 3810643d2e..8627e1e65d 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/JoinStringExpressionsRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/JoinStringExpressionsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Text; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/MergeSwitchSectionsRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/MergeSwitchSectionsRefactoring.cs index 235a588ad8..4e746a1b41 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/MergeSwitchSectionsRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/MergeSwitchSectionsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveBracesRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveBracesRefactoring.cs index 4eb87bb680..f7b1c2f633 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveBracesRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveBracesRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveEmptyFinallyClauseRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveEmptyFinallyClauseRefactoring.cs index 6b3ecc1d99..0e9ac275f6 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveEmptyFinallyClauseRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveEmptyFinallyClauseRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveEmptyInitializerRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveEmptyInitializerRefactoring.cs index df5f3078e2..92a18de82f 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveEmptyInitializerRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveEmptyInitializerRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveEmptyNamespaceDeclarationRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveEmptyNamespaceDeclarationRefactoring.cs index 8d5434688a..2e0daaf23b 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveEmptyNamespaceDeclarationRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveEmptyNamespaceDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveEmptyRegionRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveEmptyRegionRefactoring.cs index 8c60f26eef..582a9fae08 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveEmptyRegionRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveEmptyRegionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveEmptyStatementRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveEmptyStatementRefactoring.cs index fa9871bd12..7d3e4f8373 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveEmptyStatementRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveEmptyStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveEnumDefaultUnderlyingTypeRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveEnumDefaultUnderlyingTypeRefactoring.cs index 7d33e07a9d..62c1434b4c 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveEnumDefaultUnderlyingTypeRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveEnumDefaultUnderlyingTypeRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveOriginalExceptionFromThrowStatementRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveOriginalExceptionFromThrowStatementRefactoring.cs index 6e23e5ebc5..10e4870692 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveOriginalExceptionFromThrowStatementRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveOriginalExceptionFromThrowStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantAsOperatorRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantAsOperatorRefactoring.cs index 55df6839a8..fadd2b8416 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantAsOperatorRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantAsOperatorRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantAutoPropertyInitializationRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantAutoPropertyInitializationRefactoring.cs index a1015b56d4..545f3cfbb3 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantAutoPropertyInitializationRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantAutoPropertyInitializationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantBaseConstructorCallRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantBaseConstructorCallRefactoring.cs index 5a8cb929c1..e39e7a4efe 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantBaseConstructorCallRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantBaseConstructorCallRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantBaseInterfaceRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantBaseInterfaceRefactoring.cs index d2692e6941..efb7e4d5cf 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantBaseInterfaceRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantBaseInterfaceRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantBooleanLiteralRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantBooleanLiteralRefactoring.cs index 1064547021..16b904a98d 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantBooleanLiteralRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantBooleanLiteralRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantCastRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantCastRefactoring.cs index a17128d1fc..3df91b4dc9 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantCastRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantCastRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantDefaultSwitchSectionRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantDefaultSwitchSectionRefactoring.cs index 203726db7a..26c4777b8b 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantDefaultSwitchSectionRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantDefaultSwitchSectionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantDelegateCreationRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantDelegateCreationRefactoring.cs index c95bcca3ce..7d52aa4402 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantDelegateCreationRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantDelegateCreationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Threading; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantDisposeOrCloseCallRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantDisposeOrCloseCallRefactoring.cs index b04757a17a..9cb066c528 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantDisposeOrCloseCallRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveRedundantDisposeOrCloseCallRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveUnnecessaryCaseLabelRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveUnnecessaryCaseLabelRefactoring.cs index 89ef45ca08..ef1d5838ff 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveUnnecessaryCaseLabelRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/RemoveUnnecessaryCaseLabelRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/SimplifyCoalesceExpressionRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/SimplifyCoalesceExpressionRefactoring.cs index c36d481554..1563d6faa7 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/SimplifyCoalesceExpressionRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/SimplifyCoalesceExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Threading; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/SimplifyNestedUsingStatementRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/SimplifyNestedUsingStatementRefactoring.cs index 9fe8db15b3..80cd8c7912 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/SimplifyNestedUsingStatementRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/SimplifyNestedUsingStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/SimplifyNullCheckRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/SimplifyNullCheckRefactoring.cs index b62a17be31..e1e1840f03 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/SimplifyNullCheckRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/SimplifyNullCheckRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/SimplifyNullableOfTRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/SimplifyNullableOfTRefactoring.cs index 610b15983c..cc37a53bea 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/SimplifyNullableOfTRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/SimplifyNullableOfTRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/UnconstrainedTypeParameterCheckedForNullRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/UnconstrainedTypeParameterCheckedForNullRefactoring.cs index 4a90fab3a3..4b815a23c6 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/UnconstrainedTypeParameterCheckedForNullRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/UnconstrainedTypeParameterCheckedForNullRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/UnnecessaryInterpolatedStringRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/UnnecessaryInterpolatedStringRefactoring.cs index 1507934942..24a9f5b7d4 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/UnnecessaryInterpolatedStringRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/UnnecessaryInterpolatedStringRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/UnnecessaryInterpolationRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/UnnecessaryInterpolationRefactoring.cs index 170e1812ad..a2aca33399 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/UnnecessaryInterpolationRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/UnnecessaryInterpolationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/UnusedParameterRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/UnusedParameterRefactoring.cs index 9399babfc8..812ccb4b88 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/UnusedParameterRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/UnusedParameterRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/UseCountOrLengthPropertyInsteadOfAnyMethodRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/UseCountOrLengthPropertyInsteadOfAnyMethodRefactoring.cs index 15cd5c2bb5..f51729d406 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/UseCountOrLengthPropertyInsteadOfAnyMethodRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/UseCountOrLengthPropertyInsteadOfAnyMethodRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/UseEventArgsEmptyRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/UseEventArgsEmptyRefactoring.cs index 7cfc254ada..189f50fffa 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/UseEventArgsEmptyRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/UseEventArgsEmptyRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/UseExclusiveOrOperatorRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/UseExclusiveOrOperatorRefactoring.cs index b75df9f7bc..cca0119027 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/UseExclusiveOrOperatorRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/UseExclusiveOrOperatorRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/UseIsOperatorInsteadOfAsOperatorRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/UseIsOperatorInsteadOfAsOperatorRefactoring.cs index 04410d9bc3..520ac6f1b7 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/UseIsOperatorInsteadOfAsOperatorRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/UseIsOperatorInsteadOfAsOperatorRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/UseNameOfOperatorRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/UseNameOfOperatorRefactoring.cs index 512e51f0c1..5329861af5 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/UseNameOfOperatorRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/UseNameOfOperatorRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/UseRegexInstanceInsteadOfStaticMethodRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/UseRegexInstanceInsteadOfStaticMethodRefactoring.cs index 997daaeb27..8c8c0e08d7 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/UseRegexInstanceInsteadOfStaticMethodRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/UseRegexInstanceInsteadOfStaticMethodRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Diagnostics; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/UseSpacesInsteadOfTabRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/UseSpacesInsteadOfTabRefactoring.cs index 19cb9c9e0f..7ed28196c2 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/UseSpacesInsteadOfTabRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/UseSpacesInsteadOfTabRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CSharp/Refactorings/ValueTypeObjectIsNeverEqualToNullRefactoring.cs b/src/Analyzers.CodeFixes/CSharp/Refactorings/ValueTypeObjectIsNeverEqualToNullRefactoring.cs index be9eecc8e0..7b03dfd69d 100644 --- a/src/Analyzers.CodeFixes/CSharp/Refactorings/ValueTypeObjectIsNeverEqualToNullRefactoring.cs +++ b/src/Analyzers.CodeFixes/CSharp/Refactorings/ValueTypeObjectIsNeverEqualToNullRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Analyzers.CodeFixes/CodeFixes/WhitespaceTriviaCodeFixProvider.cs b/src/Analyzers.CodeFixes/CodeFixes/WhitespaceTriviaCodeFixProvider.cs index 94c2a9815a..89a11baa0c 100644 --- a/src/Analyzers.CodeFixes/CodeFixes/WhitespaceTriviaCodeFixProvider.cs +++ b/src/Analyzers.CodeFixes/CodeFixes/WhitespaceTriviaCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Analyzers.CodeFixes/GlobalSuppressions.cs b/src/Analyzers.CodeFixes/GlobalSuppressions.cs index d82c3a00c1..7041318ed6 100644 --- a/src/Analyzers.CodeFixes/GlobalSuppressions.cs +++ b/src/Analyzers.CodeFixes/GlobalSuppressions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // This file is used by Code Analysis to maintain SuppressMessage // attributes that are applied to this project. diff --git a/src/Analyzers/Analysis/WhitespaceAnalyzer.cs b/src/Analyzers/Analysis/WhitespaceAnalyzer.cs index d328877e0c..b5a4275407 100644 --- a/src/Analyzers/Analysis/WhitespaceAnalyzer.cs +++ b/src/Analyzers/Analysis/WhitespaceAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/AbstractTypeShouldNotHavePublicConstructorsAnalyzer.cs b/src/Analyzers/CSharp/Analysis/AbstractTypeShouldNotHavePublicConstructorsAnalyzer.cs index 575baafcf7..d0195ff1d9 100644 --- a/src/Analyzers/CSharp/Analysis/AbstractTypeShouldNotHavePublicConstructorsAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/AbstractTypeShouldNotHavePublicConstructorsAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/AddBracesAnalyzer.cs b/src/Analyzers/CSharp/Analysis/AddBracesAnalyzer.cs index 0b970bcc40..961c5bcf32 100644 --- a/src/Analyzers/CSharp/Analysis/AddBracesAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/AddBracesAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/AddBracesToIfElseAnalyzer.cs b/src/Analyzers/CSharp/Analysis/AddBracesToIfElseAnalyzer.cs index e9a70c7c7c..652e9638b9 100644 --- a/src/Analyzers/CSharp/Analysis/AddBracesToIfElseAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/AddBracesToIfElseAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/AddBracesToIfElseWhenMultiLineAnalyzer.cs b/src/Analyzers/CSharp/Analysis/AddBracesToIfElseWhenMultiLineAnalyzer.cs index 201baf263b..7836148f8c 100644 --- a/src/Analyzers/CSharp/Analysis/AddBracesToIfElseWhenMultiLineAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/AddBracesToIfElseWhenMultiLineAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/AddBracesToSwitchSectionWithMultipleStatementsAnalyzer.cs b/src/Analyzers/CSharp/Analysis/AddBracesToSwitchSectionWithMultipleStatementsAnalyzer.cs index c714623e93..1d43cf096e 100644 --- a/src/Analyzers/CSharp/Analysis/AddBracesToSwitchSectionWithMultipleStatementsAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/AddBracesToSwitchSectionWithMultipleStatementsAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/AddBracesWhenMultilineAnalyzer.cs b/src/Analyzers/CSharp/Analysis/AddBracesWhenMultilineAnalyzer.cs index 5860c6124c..7a14c45016 100644 --- a/src/Analyzers/CSharp/Analysis/AddBracesWhenMultilineAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/AddBracesWhenMultilineAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/AddExceptionToDocumentationCommentAnalyzer.cs b/src/Analyzers/CSharp/Analysis/AddExceptionToDocumentationCommentAnalyzer.cs index 17cf719389..a4d45fb5ef 100644 --- a/src/Analyzers/CSharp/Analysis/AddExceptionToDocumentationCommentAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/AddExceptionToDocumentationCommentAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/AddOrRemoveAccessibilityModifiersAnalyzer.cs b/src/Analyzers/CSharp/Analysis/AddOrRemoveAccessibilityModifiersAnalyzer.cs index 6c6702d66e..6c34bf97dd 100644 --- a/src/Analyzers/CSharp/Analysis/AddOrRemoveAccessibilityModifiersAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/AddOrRemoveAccessibilityModifiersAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Analyzers/CSharp/Analysis/AddOrRemoveParenthesesFromConditionInConditionalExpressionAnalyzer.cs b/src/Analyzers/CSharp/Analysis/AddOrRemoveParenthesesFromConditionInConditionalExpressionAnalyzer.cs index 47e121ace7..6b6be32b84 100644 --- a/src/Analyzers/CSharp/Analysis/AddOrRemoveParenthesesFromConditionInConditionalExpressionAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/AddOrRemoveParenthesesFromConditionInConditionalExpressionAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/AddOrRemoveParenthesesWhenCreatingNewObjectAnalyzer.cs b/src/Analyzers/CSharp/Analysis/AddOrRemoveParenthesesWhenCreatingNewObjectAnalyzer.cs index a5d52436be..fb91df66ea 100644 --- a/src/Analyzers/CSharp/Analysis/AddOrRemoveParenthesesWhenCreatingNewObjectAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/AddOrRemoveParenthesesWhenCreatingNewObjectAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/AddOrRemoveRegionNameAnalyzer.cs b/src/Analyzers/CSharp/Analysis/AddOrRemoveRegionNameAnalyzer.cs index ed5fbc5f7c..991477ffec 100644 --- a/src/Analyzers/CSharp/Analysis/AddOrRemoveRegionNameAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/AddOrRemoveRegionNameAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/AddOrRemoveTrailingCommaAnalyzer.cs b/src/Analyzers/CSharp/Analysis/AddOrRemoveTrailingCommaAnalyzer.cs index 73808677db..ed84c787cd 100644 --- a/src/Analyzers/CSharp/Analysis/AddOrRemoveTrailingCommaAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/AddOrRemoveTrailingCommaAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/AddParagraphToDocumentationCommentAnalyzer.cs b/src/Analyzers/CSharp/Analysis/AddParagraphToDocumentationCommentAnalyzer.cs index e2eccbc924..7210738e69 100644 --- a/src/Analyzers/CSharp/Analysis/AddParagraphToDocumentationCommentAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/AddParagraphToDocumentationCommentAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Analyzers/CSharp/Analysis/AddParenthesesWhenNecessaryAnalyzer.cs b/src/Analyzers/CSharp/Analysis/AddParenthesesWhenNecessaryAnalyzer.cs index 7332240ce6..850feb6f85 100644 --- a/src/Analyzers/CSharp/Analysis/AddParenthesesWhenNecessaryAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/AddParenthesesWhenNecessaryAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/AddStaticModifierToAllPartialClassDeclarationsAnalyzer.cs b/src/Analyzers/CSharp/Analysis/AddStaticModifierToAllPartialClassDeclarationsAnalyzer.cs index 446f57e418..6320271dae 100644 --- a/src/Analyzers/CSharp/Analysis/AddStaticModifierToAllPartialClassDeclarationsAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/AddStaticModifierToAllPartialClassDeclarationsAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/AnalyzerOptionIsObsoleteAnalyzer.cs b/src/Analyzers/CSharp/Analysis/AnalyzerOptionIsObsoleteAnalyzer.cs index 8824ba9180..0baeb0c4a0 100644 --- a/src/Analyzers/CSharp/Analysis/AnalyzerOptionIsObsoleteAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/AnalyzerOptionIsObsoleteAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/AnonymousMethodAnalyzer.cs b/src/Analyzers/CSharp/Analysis/AnonymousMethodAnalyzer.cs index 84d8281143..b8a4fd019e 100644 --- a/src/Analyzers/CSharp/Analysis/AnonymousMethodAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/AnonymousMethodAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/AttributeArgumentListAnalyzer.cs b/src/Analyzers/CSharp/Analysis/AttributeArgumentListAnalyzer.cs index 23247aad69..c556cd51fb 100644 --- a/src/Analyzers/CSharp/Analysis/AttributeArgumentListAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/AttributeArgumentListAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/AvoidBoxingOfValueTypeAnalysis.cs b/src/Analyzers/CSharp/Analysis/AvoidBoxingOfValueTypeAnalysis.cs index 79986603ea..f1e6d703ad 100644 --- a/src/Analyzers/CSharp/Analysis/AvoidBoxingOfValueTypeAnalysis.cs +++ b/src/Analyzers/CSharp/Analysis/AvoidBoxingOfValueTypeAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/AvoidBoxingOfValueTypeAnalyzer.cs b/src/Analyzers/CSharp/Analysis/AvoidBoxingOfValueTypeAnalyzer.cs index d6d362b67b..9ca157b9ce 100644 --- a/src/Analyzers/CSharp/Analysis/AvoidBoxingOfValueTypeAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/AvoidBoxingOfValueTypeAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/AvoidChainOfAssignmentsAnalyzer.cs b/src/Analyzers/CSharp/Analysis/AvoidChainOfAssignmentsAnalyzer.cs index 56cc73b1bc..5fd22e3592 100644 --- a/src/Analyzers/CSharp/Analysis/AvoidChainOfAssignmentsAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/AvoidChainOfAssignmentsAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/AvoidEmptyCatchClauseThatCatchesSystemExceptionAnalyzer.cs b/src/Analyzers/CSharp/Analysis/AvoidEmptyCatchClauseThatCatchesSystemExceptionAnalyzer.cs index f954be2cea..9545dfd280 100644 --- a/src/Analyzers/CSharp/Analysis/AvoidEmptyCatchClauseThatCatchesSystemExceptionAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/AvoidEmptyCatchClauseThatCatchesSystemExceptionAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/AvoidLockingOnPubliclyAccessibleInstanceAnalyzer.cs b/src/Analyzers/CSharp/Analysis/AvoidLockingOnPubliclyAccessibleInstanceAnalyzer.cs index bcc2d9c49d..250824e4dc 100644 --- a/src/Analyzers/CSharp/Analysis/AvoidLockingOnPubliclyAccessibleInstanceAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/AvoidLockingOnPubliclyAccessibleInstanceAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/AvoidNullReferenceExceptionAnalyzer.cs b/src/Analyzers/CSharp/Analysis/AvoidNullReferenceExceptionAnalyzer.cs index b77857feed..59fd512db2 100644 --- a/src/Analyzers/CSharp/Analysis/AvoidNullReferenceExceptionAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/AvoidNullReferenceExceptionAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/AvoidSemicolonAtEndOfDeclarationAnalyzer.cs b/src/Analyzers/CSharp/Analysis/AvoidSemicolonAtEndOfDeclarationAnalyzer.cs index df6e8b4ab3..dab32bd137 100644 --- a/src/Analyzers/CSharp/Analysis/AvoidSemicolonAtEndOfDeclarationAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/AvoidSemicolonAtEndOfDeclarationAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/AvoidUsageOfDoStatementToCreateInfiniteLoopAnalyzer.cs b/src/Analyzers/CSharp/Analysis/AvoidUsageOfDoStatementToCreateInfiniteLoopAnalyzer.cs index b44b21ce51..6e53043991 100644 --- a/src/Analyzers/CSharp/Analysis/AvoidUsageOfDoStatementToCreateInfiniteLoopAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/AvoidUsageOfDoStatementToCreateInfiniteLoopAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/AvoidUsageOfForStatementToCreateInfiniteLoopAnalyzer.cs b/src/Analyzers/CSharp/Analysis/AvoidUsageOfForStatementToCreateInfiniteLoopAnalyzer.cs index 40c9d39fcc..b8d4fb7b45 100644 --- a/src/Analyzers/CSharp/Analysis/AvoidUsageOfForStatementToCreateInfiniteLoopAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/AvoidUsageOfForStatementToCreateInfiniteLoopAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/AvoidUsageOfUsingAliasDirectiveAnalyzer.cs b/src/Analyzers/CSharp/Analysis/AvoidUsageOfUsingAliasDirectiveAnalyzer.cs index c5bcb6e2a4..8c11fa7fd1 100644 --- a/src/Analyzers/CSharp/Analysis/AvoidUsageOfUsingAliasDirectiveAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/AvoidUsageOfUsingAliasDirectiveAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/AvoidUsageOfWhileStatementToCreateInfiniteLoopAnalyzer.cs b/src/Analyzers/CSharp/Analysis/AvoidUsageOfWhileStatementToCreateInfiniteLoopAnalyzer.cs index b74dfb9ad5..13fadbcd6a 100644 --- a/src/Analyzers/CSharp/Analysis/AvoidUsageOfWhileStatementToCreateInfiniteLoopAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/AvoidUsageOfWhileStatementToCreateInfiniteLoopAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Analyzers/CSharp/Analysis/BaseDiagnosticAnalyzer.cs b/src/Analyzers/CSharp/Analysis/BaseDiagnosticAnalyzer.cs index 40f6416be6..5d3c2733c7 100644 --- a/src/Analyzers/CSharp/Analysis/BaseDiagnosticAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/BaseDiagnosticAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using System.Linq; diff --git a/src/Analyzers/CSharp/Analysis/BinaryOperatorAnalyzer.cs b/src/Analyzers/CSharp/Analysis/BinaryOperatorAnalyzer.cs index e80b03eca1..2d259b2120 100644 --- a/src/Analyzers/CSharp/Analysis/BinaryOperatorAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/BinaryOperatorAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Analyzers/CSharp/Analysis/BitwiseOperatorAnalyzer.cs b/src/Analyzers/CSharp/Analysis/BitwiseOperatorAnalyzer.cs index d905c8ea67..c0311bc9c8 100644 --- a/src/Analyzers/CSharp/Analysis/BitwiseOperatorAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/BitwiseOperatorAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/Analyzers/CSharp/Analysis/BooleanLiteralAnalyzer.cs b/src/Analyzers/CSharp/Analysis/BooleanLiteralAnalyzer.cs index d4b680da74..506712e068 100644 --- a/src/Analyzers/CSharp/Analysis/BooleanLiteralAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/BooleanLiteralAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/Analyzers/CSharp/Analysis/CallCastInsteadOfSelectAnalysis.cs b/src/Analyzers/CSharp/Analysis/CallCastInsteadOfSelectAnalysis.cs index 8779b30ffc..fcea9c77bc 100644 --- a/src/Analyzers/CSharp/Analysis/CallCastInsteadOfSelectAnalysis.cs +++ b/src/Analyzers/CSharp/Analysis/CallCastInsteadOfSelectAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading; diff --git a/src/Analyzers/CSharp/Analysis/CallExtensionMethodAsInstanceMethodAnalyzer.cs b/src/Analyzers/CSharp/Analysis/CallExtensionMethodAsInstanceMethodAnalyzer.cs index 952042035a..4e3e08a931 100644 --- a/src/Analyzers/CSharp/Analysis/CallExtensionMethodAsInstanceMethodAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/CallExtensionMethodAsInstanceMethodAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/Analyzers/CSharp/Analysis/CallThenByInsteadOfOrderByAnalysis.cs b/src/Analyzers/CSharp/Analysis/CallThenByInsteadOfOrderByAnalysis.cs index dc2c061cb9..c0baa469ff 100644 --- a/src/Analyzers/CSharp/Analysis/CallThenByInsteadOfOrderByAnalysis.cs +++ b/src/Analyzers/CSharp/Analysis/CallThenByInsteadOfOrderByAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/CombineEnumerableWhereMethodChainAnalysis.cs b/src/Analyzers/CSharp/Analysis/CombineEnumerableWhereMethodChainAnalysis.cs index 923235a0cb..3b5fe1083a 100644 --- a/src/Analyzers/CSharp/Analysis/CombineEnumerableWhereMethodChainAnalysis.cs +++ b/src/Analyzers/CSharp/Analysis/CombineEnumerableWhereMethodChainAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading; diff --git a/src/Analyzers/CSharp/Analysis/ConditionalExpressionAnalyzer.cs b/src/Analyzers/CSharp/Analysis/ConditionalExpressionAnalyzer.cs index 61f4dab7d4..12b37f2551 100644 --- a/src/Analyzers/CSharp/Analysis/ConditionalExpressionAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/ConditionalExpressionAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/ConfigureAwaitAnalyzer.cs b/src/Analyzers/CSharp/Analysis/ConfigureAwaitAnalyzer.cs index 5725ec32f3..60b3f2c0e9 100644 --- a/src/Analyzers/CSharp/Analysis/ConfigureAwaitAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/ConfigureAwaitAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/ConstantValuesShouldBePlacedOnRightSideOfComparisonsAnalyzer.cs b/src/Analyzers/CSharp/Analysis/ConstantValuesShouldBePlacedOnRightSideOfComparisonsAnalyzer.cs index 10e1bd1cac..90174b5512 100644 --- a/src/Analyzers/CSharp/Analysis/ConstantValuesShouldBePlacedOnRightSideOfComparisonsAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/ConstantValuesShouldBePlacedOnRightSideOfComparisonsAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/ConvertCommentToDocumentationCommentAnalyzer.cs b/src/Analyzers/CSharp/Analysis/ConvertCommentToDocumentationCommentAnalyzer.cs index b7a5ac7817..2167b2e4b4 100644 --- a/src/Analyzers/CSharp/Analysis/ConvertCommentToDocumentationCommentAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/ConvertCommentToDocumentationCommentAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/ConvertInterpolatedStringToConcatenationAnalyzer.cs b/src/Analyzers/CSharp/Analysis/ConvertInterpolatedStringToConcatenationAnalyzer.cs index 6b618c4922..d80405a4c8 100644 --- a/src/Analyzers/CSharp/Analysis/ConvertInterpolatedStringToConcatenationAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/ConvertInterpolatedStringToConcatenationAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/DeclareEachAttributeSeparatelyAnalyzer.cs b/src/Analyzers/CSharp/Analysis/DeclareEachAttributeSeparatelyAnalyzer.cs index 4bdc2daba6..ed083eeb1a 100644 --- a/src/Analyzers/CSharp/Analysis/DeclareEachAttributeSeparatelyAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/DeclareEachAttributeSeparatelyAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/DeclareEachTypeInSeparateFileAnalyzer.cs b/src/Analyzers/CSharp/Analysis/DeclareEachTypeInSeparateFileAnalyzer.cs index a7c5c8f181..ea8118e612 100644 --- a/src/Analyzers/CSharp/Analysis/DeclareEachTypeInSeparateFileAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/DeclareEachTypeInSeparateFileAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/DeclareTypeInsideNamespaceAnalyzer.cs b/src/Analyzers/CSharp/Analysis/DeclareTypeInsideNamespaceAnalyzer.cs index ddd01c399c..0a15a38c6c 100644 --- a/src/Analyzers/CSharp/Analysis/DeclareTypeInsideNamespaceAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/DeclareTypeInsideNamespaceAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/DeclareUsingDirectiveOnTopLevelAnalyzer.cs b/src/Analyzers/CSharp/Analysis/DeclareUsingDirectiveOnTopLevelAnalyzer.cs index ffad1487c1..3ee9d82ee4 100644 --- a/src/Analyzers/CSharp/Analysis/DeclareUsingDirectiveOnTopLevelAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/DeclareUsingDirectiveOnTopLevelAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/DefaultExpressionAnalyzer.cs b/src/Analyzers/CSharp/Analysis/DefaultExpressionAnalyzer.cs index 14ad821990..aba80b54fa 100644 --- a/src/Analyzers/CSharp/Analysis/DefaultExpressionAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/DefaultExpressionAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/DefaultLabelShouldBeLastLabelInSwitchSectionAnalyzer.cs b/src/Analyzers/CSharp/Analysis/DefaultLabelShouldBeLastLabelInSwitchSectionAnalyzer.cs index 69dab6ac5d..136814564c 100644 --- a/src/Analyzers/CSharp/Analysis/DefaultLabelShouldBeLastLabelInSwitchSectionAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/DefaultLabelShouldBeLastLabelInSwitchSectionAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/DuplicateWordInCommentAnalyzer.cs b/src/Analyzers/CSharp/Analysis/DuplicateWordInCommentAnalyzer.cs index 568e48f348..c72fe28080 100644 --- a/src/Analyzers/CSharp/Analysis/DuplicateWordInCommentAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/DuplicateWordInCommentAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/EmbeddedStatementAnalysis.cs b/src/Analyzers/CSharp/Analysis/EmbeddedStatementAnalysis.cs index a442974976..a09827e25f 100644 --- a/src/Analyzers/CSharp/Analysis/EmbeddedStatementAnalysis.cs +++ b/src/Analyzers/CSharp/Analysis/EmbeddedStatementAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Analyzers/CSharp/Analysis/EnumShouldDeclareExplicitValuesAnalyzer.cs b/src/Analyzers/CSharp/Analysis/EnumShouldDeclareExplicitValuesAnalyzer.cs index 1db3d6202e..25ca35164b 100644 --- a/src/Analyzers/CSharp/Analysis/EnumShouldDeclareExplicitValuesAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/EnumShouldDeclareExplicitValuesAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/EnumSymbolAnalyzer.cs b/src/Analyzers/CSharp/Analysis/EnumSymbolAnalyzer.cs index 9062b002c6..27850aed95 100644 --- a/src/Analyzers/CSharp/Analysis/EnumSymbolAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/EnumSymbolAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Analyzers/CSharp/Analysis/FixDocumentationCommentTagAnalysis.cs b/src/Analyzers/CSharp/Analysis/FixDocumentationCommentTagAnalysis.cs index 0a095a03f1..fa5ca2fe44 100644 --- a/src/Analyzers/CSharp/Analysis/FixDocumentationCommentTagAnalysis.cs +++ b/src/Analyzers/CSharp/Analysis/FixDocumentationCommentTagAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Analyzers/CSharp/Analysis/FormatDocumentationCommentSummaryAnalyzer.cs b/src/Analyzers/CSharp/Analysis/FormatDocumentationCommentSummaryAnalyzer.cs index d72acb83be..ce95502de7 100644 --- a/src/Analyzers/CSharp/Analysis/FormatDocumentationCommentSummaryAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/FormatDocumentationCommentSummaryAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Text.RegularExpressions; diff --git a/src/Analyzers/CSharp/Analysis/FormatSummaryOnMultipleLinesAnalyzer.cs b/src/Analyzers/CSharp/Analysis/FormatSummaryOnMultipleLinesAnalyzer.cs index c09dd3cd04..eb279733bf 100644 --- a/src/Analyzers/CSharp/Analysis/FormatSummaryOnMultipleLinesAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/FormatSummaryOnMultipleLinesAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/FormatSummaryOnSingleLineAnalyzer.cs b/src/Analyzers/CSharp/Analysis/FormatSummaryOnSingleLineAnalyzer.cs index 3d3aef8311..c3ad5900d9 100644 --- a/src/Analyzers/CSharp/Analysis/FormatSummaryOnSingleLineAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/FormatSummaryOnSingleLineAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Text.RegularExpressions; diff --git a/src/Analyzers/CSharp/Analysis/IfStatementAnalyzer.cs b/src/Analyzers/CSharp/Analysis/IfStatementAnalyzer.cs index 34efcf51ea..234e9188c4 100644 --- a/src/Analyzers/CSharp/Analysis/IfStatementAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/IfStatementAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Diagnostics; diff --git a/src/Analyzers/CSharp/Analysis/ImplementExceptionConstructorsAnalyzer.cs b/src/Analyzers/CSharp/Analysis/ImplementExceptionConstructorsAnalyzer.cs index be44e24a7e..84bb5cd046 100644 --- a/src/Analyzers/CSharp/Analysis/ImplementExceptionConstructorsAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/ImplementExceptionConstructorsAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/InlineLocalVariableAnalyzer.cs b/src/Analyzers/CSharp/Analysis/InlineLocalVariableAnalyzer.cs index 0fb1c0900e..9857dc5a9a 100644 --- a/src/Analyzers/CSharp/Analysis/InlineLocalVariableAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/InlineLocalVariableAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/InvalidArgumentNullCheckAnalyzer.cs b/src/Analyzers/CSharp/Analysis/InvalidArgumentNullCheckAnalyzer.cs index 3eda8d5bf0..e66a099ee2 100644 --- a/src/Analyzers/CSharp/Analysis/InvalidArgumentNullCheckAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/InvalidArgumentNullCheckAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/InvocationExpressionAnalyzer.cs b/src/Analyzers/CSharp/Analysis/InvocationExpressionAnalyzer.cs index 076223ee0f..c74f125607 100644 --- a/src/Analyzers/CSharp/Analysis/InvocationExpressionAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/InvocationExpressionAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/JoinStringExpressionsAnalyzer.cs b/src/Analyzers/CSharp/Analysis/JoinStringExpressionsAnalyzer.cs index eec9b92e79..e24210d159 100644 --- a/src/Analyzers/CSharp/Analysis/JoinStringExpressionsAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/JoinStringExpressionsAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Diagnostics; diff --git a/src/Analyzers/CSharp/Analysis/LambdaExpressionAnalyzer.cs b/src/Analyzers/CSharp/Analysis/LambdaExpressionAnalyzer.cs index 81c95952d8..fd40aba4fd 100644 --- a/src/Analyzers/CSharp/Analysis/LambdaExpressionAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/LambdaExpressionAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/MakeClassSealedAnalyzer.cs b/src/Analyzers/CSharp/Analysis/MakeClassSealedAnalyzer.cs index 511387e468..00edbe1292 100644 --- a/src/Analyzers/CSharp/Analysis/MakeClassSealedAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/MakeClassSealedAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Analyzers/CSharp/Analysis/MakeClassStaticAnalyzer.cs b/src/Analyzers/CSharp/Analysis/MakeClassStaticAnalyzer.cs index 97380965d5..88dc125a0a 100644 --- a/src/Analyzers/CSharp/Analysis/MakeClassStaticAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/MakeClassStaticAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/MakeMemberReadOnly/MakeMemberReadOnlyAnalyzer.cs b/src/Analyzers/CSharp/Analysis/MakeMemberReadOnly/MakeMemberReadOnlyAnalyzer.cs index e7512828d3..33a15900a2 100644 --- a/src/Analyzers/CSharp/Analysis/MakeMemberReadOnly/MakeMemberReadOnlyAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/MakeMemberReadOnly/MakeMemberReadOnlyAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Analyzers/CSharp/Analysis/MakeMemberReadOnly/MakeMemberReadOnlyWalker.cs b/src/Analyzers/CSharp/Analysis/MakeMemberReadOnly/MakeMemberReadOnlyWalker.cs index baab24a662..c0906903db 100644 --- a/src/Analyzers/CSharp/Analysis/MakeMemberReadOnly/MakeMemberReadOnlyWalker.cs +++ b/src/Analyzers/CSharp/Analysis/MakeMemberReadOnly/MakeMemberReadOnlyWalker.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Analyzers/CSharp/Analysis/MakeMethodExtensionMethodAnalyzer.cs b/src/Analyzers/CSharp/Analysis/MakeMethodExtensionMethodAnalyzer.cs index 471894c46d..40ed278c5f 100644 --- a/src/Analyzers/CSharp/Analysis/MakeMethodExtensionMethodAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/MakeMethodExtensionMethodAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/MarkLocalVariableAsConst/MarkLocalVariableAsConstAnalyzer.cs b/src/Analyzers/CSharp/Analysis/MarkLocalVariableAsConst/MarkLocalVariableAsConstAnalyzer.cs index 2af08f679b..96b2a5d605 100644 --- a/src/Analyzers/CSharp/Analysis/MarkLocalVariableAsConst/MarkLocalVariableAsConstAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/MarkLocalVariableAsConst/MarkLocalVariableAsConstAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/Analyzers/CSharp/Analysis/MarkLocalVariableAsConst/MarkLocalVariableAsConstWalker.cs b/src/Analyzers/CSharp/Analysis/MarkLocalVariableAsConst/MarkLocalVariableAsConstWalker.cs index 0714013ea6..48cd9c5aec 100644 --- a/src/Analyzers/CSharp/Analysis/MarkLocalVariableAsConst/MarkLocalVariableAsConstWalker.cs +++ b/src/Analyzers/CSharp/Analysis/MarkLocalVariableAsConst/MarkLocalVariableAsConstWalker.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Analyzers/CSharp/Analysis/MarkTypeWithDebuggerDisplayAttributeAnalyzer.cs b/src/Analyzers/CSharp/Analysis/MarkTypeWithDebuggerDisplayAttributeAnalyzer.cs index 93285377d7..33d422e5ef 100644 --- a/src/Analyzers/CSharp/Analysis/MarkTypeWithDebuggerDisplayAttributeAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/MarkTypeWithDebuggerDisplayAttributeAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/MergeElseWithNestedIfAnalyzer.cs b/src/Analyzers/CSharp/Analysis/MergeElseWithNestedIfAnalyzer.cs index 768cdee07a..51d4bb0a59 100644 --- a/src/Analyzers/CSharp/Analysis/MergeElseWithNestedIfAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/MergeElseWithNestedIfAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/MergeIfWithNestedIfAnalyzer.cs b/src/Analyzers/CSharp/Analysis/MergeIfWithNestedIfAnalyzer.cs index 068ee31854..6fb7f9f7c4 100644 --- a/src/Analyzers/CSharp/Analysis/MergeIfWithNestedIfAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/MergeIfWithNestedIfAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Analyzers/CSharp/Analysis/MergePreprocessorDirectivesAnalyzer.cs b/src/Analyzers/CSharp/Analysis/MergePreprocessorDirectivesAnalyzer.cs index dd3d184985..7e62f1991f 100644 --- a/src/Analyzers/CSharp/Analysis/MergePreprocessorDirectivesAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/MergePreprocessorDirectivesAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/MergeSwitchSectionsAnalyzer.cs b/src/Analyzers/CSharp/Analysis/MergeSwitchSectionsAnalyzer.cs index a4298d9f6a..9f1fc9d6a5 100644 --- a/src/Analyzers/CSharp/Analysis/MergeSwitchSectionsAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/MergeSwitchSectionsAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Analyzers/CSharp/Analysis/NamedTypeSymbolAnalyzer.cs b/src/Analyzers/CSharp/Analysis/NamedTypeSymbolAnalyzer.cs index 30238f8bd5..d9c5365e6a 100644 --- a/src/Analyzers/CSharp/Analysis/NamedTypeSymbolAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/NamedTypeSymbolAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Analyzers/CSharp/Analysis/NonAsynchronousMethodNameShouldNotEndWithAsyncAnalyzer.cs b/src/Analyzers/CSharp/Analysis/NonAsynchronousMethodNameShouldNotEndWithAsyncAnalyzer.cs index b5c1e4dcd2..f13f3d8aeb 100644 --- a/src/Analyzers/CSharp/Analysis/NonAsynchronousMethodNameShouldNotEndWithAsyncAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/NonAsynchronousMethodNameShouldNotEndWithAsyncAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/NormalizeFormatOfEnumFlagValueAnalyzer.cs b/src/Analyzers/CSharp/Analysis/NormalizeFormatOfEnumFlagValueAnalyzer.cs index 062d57c145..13e6ceef01 100644 --- a/src/Analyzers/CSharp/Analysis/NormalizeFormatOfEnumFlagValueAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/NormalizeFormatOfEnumFlagValueAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/NormalizeNullCheckAnalyzer.cs b/src/Analyzers/CSharp/Analysis/NormalizeNullCheckAnalyzer.cs index b090bcaf37..766b06f76b 100644 --- a/src/Analyzers/CSharp/Analysis/NormalizeNullCheckAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/NormalizeNullCheckAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/NormalizeUsageOfInfiniteLoopAnalyzer.cs b/src/Analyzers/CSharp/Analysis/NormalizeUsageOfInfiniteLoopAnalyzer.cs index 2e2e18d4e5..357060eff8 100644 --- a/src/Analyzers/CSharp/Analysis/NormalizeUsageOfInfiniteLoopAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/NormalizeUsageOfInfiniteLoopAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Analyzers/CSharp/Analysis/OptimizeLinqMethodCallAnalysis.cs b/src/Analyzers/CSharp/Analysis/OptimizeLinqMethodCallAnalysis.cs index e17c798c4a..cec9ffbc5a 100644 --- a/src/Analyzers/CSharp/Analysis/OptimizeLinqMethodCallAnalysis.cs +++ b/src/Analyzers/CSharp/Analysis/OptimizeLinqMethodCallAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Analyzers/CSharp/Analysis/OptimizeMethodCallAnalysis.cs b/src/Analyzers/CSharp/Analysis/OptimizeMethodCallAnalysis.cs index 1ed6273cc8..a0de789691 100644 --- a/src/Analyzers/CSharp/Analysis/OptimizeMethodCallAnalysis.cs +++ b/src/Analyzers/CSharp/Analysis/OptimizeMethodCallAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/OptimizeStringBuilderAppendCallAnalysis.cs b/src/Analyzers/CSharp/Analysis/OptimizeStringBuilderAppendCallAnalysis.cs index b8fa284912..f0f80e7c04 100644 --- a/src/Analyzers/CSharp/Analysis/OptimizeStringBuilderAppendCallAnalysis.cs +++ b/src/Analyzers/CSharp/Analysis/OptimizeStringBuilderAppendCallAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/OrderModifiersAnalyzer.cs b/src/Analyzers/CSharp/Analysis/OrderModifiersAnalyzer.cs index a93647d7c5..6937d64d7e 100644 --- a/src/Analyzers/CSharp/Analysis/OrderModifiersAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/OrderModifiersAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/OrderNamedArgumentsAnalyzer.cs b/src/Analyzers/CSharp/Analysis/OrderNamedArgumentsAnalyzer.cs index 75f6e7091b..d3338b86e8 100644 --- a/src/Analyzers/CSharp/Analysis/OrderNamedArgumentsAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/OrderNamedArgumentsAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Analyzers/CSharp/Analysis/OrderTypeParameterConstraintsAnalyzer.cs b/src/Analyzers/CSharp/Analysis/OrderTypeParameterConstraintsAnalyzer.cs index eafaad407c..7fe6b80071 100644 --- a/src/Analyzers/CSharp/Analysis/OrderTypeParameterConstraintsAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/OrderTypeParameterConstraintsAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/OverridingMemberShouldNotChangeParamsModifierAnalyzer.cs b/src/Analyzers/CSharp/Analysis/OverridingMemberShouldNotChangeParamsModifierAnalyzer.cs index 250e9abb6d..36c84f2a37 100644 --- a/src/Analyzers/CSharp/Analysis/OverridingMemberShouldNotChangeParamsModifierAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/OverridingMemberShouldNotChangeParamsModifierAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Analyzers/CSharp/Analysis/ParameterNameDiffersFromBaseAnalyzer.cs b/src/Analyzers/CSharp/Analysis/ParameterNameDiffersFromBaseAnalyzer.cs index a6e5ad334e..1132c689a3 100644 --- a/src/Analyzers/CSharp/Analysis/ParameterNameDiffersFromBaseAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/ParameterNameDiffersFromBaseAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/PattenMatchingAnalysis/PatternMatchingVariableDeclarationHelper.cs b/src/Analyzers/CSharp/Analysis/PattenMatchingAnalysis/PatternMatchingVariableDeclarationHelper.cs index 6949bb4f6f..5225a66607 100644 --- a/src/Analyzers/CSharp/Analysis/PattenMatchingAnalysis/PatternMatchingVariableDeclarationHelper.cs +++ b/src/Analyzers/CSharp/Analysis/PattenMatchingAnalysis/PatternMatchingVariableDeclarationHelper.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Analyzers/CSharp/Analysis/ReduceIfNestingAnalyzer.cs b/src/Analyzers/CSharp/Analysis/ReduceIfNestingAnalyzer.cs index bb499c0e2d..41a949df11 100644 --- a/src/Analyzers/CSharp/Analysis/ReduceIfNestingAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/ReduceIfNestingAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/RefReadOnlyParameterAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RefReadOnlyParameterAnalyzer.cs index 1eb281af7b..e8cad53ecb 100644 --- a/src/Analyzers/CSharp/Analysis/RefReadOnlyParameterAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RefReadOnlyParameterAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Analyzers/CSharp/Analysis/RemoveBracesAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveBracesAnalyzer.cs index 60420ce4c1..8f19977055 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveBracesAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveBracesAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/RemoveBracesFromIfElseAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveBracesFromIfElseAnalyzer.cs index 48cf62d7a5..d8e1a50636 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveBracesFromIfElseAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveBracesFromIfElseAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/RemoveEmptyDestructorAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveEmptyDestructorAnalyzer.cs index b34236a299..77c360efff 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveEmptyDestructorAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveEmptyDestructorAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/RemoveEmptyElseClauseAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveEmptyElseClauseAnalyzer.cs index 0fdc993778..427858277e 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveEmptyElseClauseAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveEmptyElseClauseAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/RemoveEmptyFinallyClauseAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveEmptyFinallyClauseAnalyzer.cs index c80ffed4cd..f0deee94e3 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveEmptyFinallyClauseAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveEmptyFinallyClauseAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/RemoveEmptyInitializerAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveEmptyInitializerAnalyzer.cs index 25641b6772..7e711f82ff 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveEmptyInitializerAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveEmptyInitializerAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/RemoveEmptyNamespaceDeclarationAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveEmptyNamespaceDeclarationAnalyzer.cs index 9a9ff26ce2..11cd6b18fe 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveEmptyNamespaceDeclarationAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveEmptyNamespaceDeclarationAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/RemoveEmptyRegionAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveEmptyRegionAnalyzer.cs index 08ef491bb1..d24b37a4e3 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveEmptyRegionAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveEmptyRegionAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/RemoveEmptyStatementAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveEmptyStatementAnalyzer.cs index d6ab671a1c..6dd89990d7 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveEmptyStatementAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveEmptyStatementAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/RemoveEmptySyntaxAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveEmptySyntaxAnalyzer.cs index f1318bb645..5178ae7b6b 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveEmptySyntaxAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveEmptySyntaxAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/RemoveEnumDefaultUnderlyingTypeAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveEnumDefaultUnderlyingTypeAnalyzer.cs index 2c25386fb5..9f8c11daf9 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveEnumDefaultUnderlyingTypeAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveEnumDefaultUnderlyingTypeAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/RemoveFileWithNoCodeAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveFileWithNoCodeAnalyzer.cs index ba77849044..300d1e1659 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveFileWithNoCodeAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveFileWithNoCodeAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/RemoveOriginalExceptionFromThrowStatementAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveOriginalExceptionFromThrowStatementAnalyzer.cs index 4e69f4e70c..6852fa270c 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveOriginalExceptionFromThrowStatementAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveOriginalExceptionFromThrowStatementAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/RemovePartialModifierFromTypeWithSinglePartAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemovePartialModifierFromTypeWithSinglePartAnalyzer.cs index 4fcc5c2f96..37108bc300 100644 --- a/src/Analyzers/CSharp/Analysis/RemovePartialModifierFromTypeWithSinglePartAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemovePartialModifierFromTypeWithSinglePartAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Analyzers/CSharp/Analysis/RemoveRedundantAsOperatorAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveRedundantAsOperatorAnalyzer.cs index 3b4d665125..82c08b4202 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveRedundantAsOperatorAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveRedundantAsOperatorAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/RemoveRedundantAssignmentAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveRedundantAssignmentAnalyzer.cs index d8a8978378..306a7ebf39 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveRedundantAssignmentAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveRedundantAssignmentAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/RemoveRedundantAsyncAwaitAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveRedundantAsyncAwaitAnalyzer.cs index e9cdde45b5..cb01fc95c4 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveRedundantAsyncAwaitAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveRedundantAsyncAwaitAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/RemoveRedundantAutoPropertyInitializationAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveRedundantAutoPropertyInitializationAnalyzer.cs index 6367823fd6..e5631bbfdc 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveRedundantAutoPropertyInitializationAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveRedundantAutoPropertyInitializationAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/RemoveRedundantBaseConstructorCallAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveRedundantBaseConstructorCallAnalyzer.cs index 8505d69924..b4b019fbf9 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveRedundantBaseConstructorCallAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveRedundantBaseConstructorCallAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Analyzers/CSharp/Analysis/RemoveRedundantBaseInterfaceAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveRedundantBaseInterfaceAnalyzer.cs index e621f00a28..de36fbb7ad 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveRedundantBaseInterfaceAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveRedundantBaseInterfaceAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Analyzers/CSharp/Analysis/RemoveRedundantBooleanLiteralAnalysis.cs b/src/Analyzers/CSharp/Analysis/RemoveRedundantBooleanLiteralAnalysis.cs index 12af1eb03e..b3e92b6994 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveRedundantBooleanLiteralAnalysis.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveRedundantBooleanLiteralAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Analyzers/CSharp/Analysis/RemoveRedundantCastAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveRedundantCastAnalyzer.cs index 120e89b26c..535fbfb29b 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveRedundantCastAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveRedundantCastAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Diagnostics; diff --git a/src/Analyzers/CSharp/Analysis/RemoveRedundantCommaInInitializerAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveRedundantCommaInInitializerAnalyzer.cs index 0e2c588d46..d0c7c65929 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveRedundantCommaInInitializerAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveRedundantCommaInInitializerAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Diagnostics; diff --git a/src/Analyzers/CSharp/Analysis/RemoveRedundantConstructorAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveRedundantConstructorAnalyzer.cs index b371107c7a..6f74d8af3b 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveRedundantConstructorAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveRedundantConstructorAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Analyzers/CSharp/Analysis/RemoveRedundantDefaultSwitchSectionAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveRedundantDefaultSwitchSectionAnalyzer.cs index 11cf58bca0..2f1eb94eb2 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveRedundantDefaultSwitchSectionAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveRedundantDefaultSwitchSectionAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Analyzers/CSharp/Analysis/RemoveRedundantDelegateCreationAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveRedundantDelegateCreationAnalyzer.cs index e4b5ab9bcb..3403e0ef53 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveRedundantDelegateCreationAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveRedundantDelegateCreationAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/Analyzers/CSharp/Analysis/RemoveRedundantDisposeOrCloseCallAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveRedundantDisposeOrCloseCallAnalyzer.cs index 38a659c546..f5b539dc93 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveRedundantDisposeOrCloseCallAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveRedundantDisposeOrCloseCallAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/RemoveRedundantFieldInitializationAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveRedundantFieldInitializationAnalyzer.cs index 7c4562ee7b..161b5e3180 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveRedundantFieldInitializationAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveRedundantFieldInitializationAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/Analyzers/CSharp/Analysis/RemoveRedundantOverridingMemberAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveRedundantOverridingMemberAnalyzer.cs index 1f011e1e05..54d57ec0f2 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveRedundantOverridingMemberAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveRedundantOverridingMemberAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Analyzers/CSharp/Analysis/RemoveRedundantParenthesesAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveRedundantParenthesesAnalyzer.cs index b1acd3b48c..39a24105ad 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveRedundantParenthesesAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveRedundantParenthesesAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Analyzers/CSharp/Analysis/RemoveRedundantSealedModifierAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveRedundantSealedModifierAnalyzer.cs index b96f3a341d..b95ca30d00 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveRedundantSealedModifierAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveRedundantSealedModifierAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Diagnostics; diff --git a/src/Analyzers/CSharp/Analysis/RemoveRedundantStatementAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveRedundantStatementAnalyzer.cs index 1685ad4a18..e32d06af5d 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveRedundantStatementAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveRedundantStatementAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/RemoveRedundantStringToCharArrayCallAnalysis.cs b/src/Analyzers/CSharp/Analysis/RemoveRedundantStringToCharArrayCallAnalysis.cs index d52ca49f82..ce865a3dcc 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveRedundantStringToCharArrayCallAnalysis.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveRedundantStringToCharArrayCallAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/RemoveRedundantToStringCallAnalysis.cs b/src/Analyzers/CSharp/Analysis/RemoveRedundantToStringCallAnalysis.cs index ecab35e2f4..d5d9c9410e 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveRedundantToStringCallAnalysis.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveRedundantToStringCallAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Linq; diff --git a/src/Analyzers/CSharp/Analysis/RemoveUnnecessaryBlankLineAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveUnnecessaryBlankLineAnalyzer.cs index 6bd25b9bd9..a3a8ed919c 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveUnnecessaryBlankLineAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveUnnecessaryBlankLineAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Diagnostics; diff --git a/src/Analyzers/CSharp/Analysis/RemoveUnnecessaryBracesAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveUnnecessaryBracesAnalyzer.cs index a11c87cc87..54b3c4a3d6 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveUnnecessaryBracesAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveUnnecessaryBracesAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/RemoveUnnecessaryBracesInSwitchSectionAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveUnnecessaryBracesInSwitchSectionAnalyzer.cs index 52f28f4e52..4b4d254975 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveUnnecessaryBracesInSwitchSectionAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveUnnecessaryBracesInSwitchSectionAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Analyzers/CSharp/Analysis/RemoveUnnecessaryCaseLabelAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveUnnecessaryCaseLabelAnalyzer.cs index 15515f6cba..36340050b3 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveUnnecessaryCaseLabelAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveUnnecessaryCaseLabelAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Analyzers/CSharp/Analysis/RemoveUnnecessaryElseAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RemoveUnnecessaryElseAnalyzer.cs index f1d104c584..d5260a194e 100644 --- a/src/Analyzers/CSharp/Analysis/RemoveUnnecessaryElseAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RemoveUnnecessaryElseAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Analyzers/CSharp/Analysis/RequiredConfigOptionNotSetAnalyzer.cs b/src/Analyzers/CSharp/Analysis/RequiredConfigOptionNotSetAnalyzer.cs index 83d206acd2..414f24ef58 100644 --- a/src/Analyzers/CSharp/Analysis/RequiredConfigOptionNotSetAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/RequiredConfigOptionNotSetAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/ReturnCompletedTaskInsteadOfNullAnalyzer.cs b/src/Analyzers/CSharp/Analysis/ReturnCompletedTaskInsteadOfNullAnalyzer.cs index 2234b6251d..6a476f5d83 100644 --- a/src/Analyzers/CSharp/Analysis/ReturnCompletedTaskInsteadOfNullAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/ReturnCompletedTaskInsteadOfNullAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Analyzers/CSharp/Analysis/SimplifyArgumentNullCheckAnalyzer.cs b/src/Analyzers/CSharp/Analysis/SimplifyArgumentNullCheckAnalyzer.cs index a18279046c..af2de98522 100644 --- a/src/Analyzers/CSharp/Analysis/SimplifyArgumentNullCheckAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/SimplifyArgumentNullCheckAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Analyzers/CSharp/Analysis/SimplifyBooleanComparisonAnalysis.cs b/src/Analyzers/CSharp/Analysis/SimplifyBooleanComparisonAnalysis.cs index 38914c5fbc..2e14b40d12 100644 --- a/src/Analyzers/CSharp/Analysis/SimplifyBooleanComparisonAnalysis.cs +++ b/src/Analyzers/CSharp/Analysis/SimplifyBooleanComparisonAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/Analyzers/CSharp/Analysis/SimplifyCoalesceExpressionAnalyzer.cs b/src/Analyzers/CSharp/Analysis/SimplifyCoalesceExpressionAnalyzer.cs index bfbc30cc7f..60db7bf295 100644 --- a/src/Analyzers/CSharp/Analysis/SimplifyCoalesceExpressionAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/SimplifyCoalesceExpressionAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/Analyzers/CSharp/Analysis/SimplifyCodeBranchingAnalyzer.cs b/src/Analyzers/CSharp/Analysis/SimplifyCodeBranchingAnalyzer.cs index 95c30b3bb5..1e48b9154e 100644 --- a/src/Analyzers/CSharp/Analysis/SimplifyCodeBranchingAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/SimplifyCodeBranchingAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/Analyzers/CSharp/Analysis/SimplifyCodeBranchingKind.cs b/src/Analyzers/CSharp/Analysis/SimplifyCodeBranchingKind.cs index a4d4ed1256..3a19761b72 100644 --- a/src/Analyzers/CSharp/Analysis/SimplifyCodeBranchingKind.cs +++ b/src/Analyzers/CSharp/Analysis/SimplifyCodeBranchingKind.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Analysis; diff --git a/src/Analyzers/CSharp/Analysis/SimplifyConditionalExpressionAnalyzer.cs b/src/Analyzers/CSharp/Analysis/SimplifyConditionalExpressionAnalyzer.cs index bde7a7f998..50c5147a11 100644 --- a/src/Analyzers/CSharp/Analysis/SimplifyConditionalExpressionAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/SimplifyConditionalExpressionAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/SimplifyLazyInitializationAnalyzer.cs b/src/Analyzers/CSharp/Analysis/SimplifyLazyInitializationAnalyzer.cs index 34e9f38c6d..806166c3a7 100644 --- a/src/Analyzers/CSharp/Analysis/SimplifyLazyInitializationAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/SimplifyLazyInitializationAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/SimplifyLogicalNegationAnalyzer.cs b/src/Analyzers/CSharp/Analysis/SimplifyLogicalNegationAnalyzer.cs index c725eb1beb..4bc933e2ee 100644 --- a/src/Analyzers/CSharp/Analysis/SimplifyLogicalNegationAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/SimplifyLogicalNegationAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/Analyzers/CSharp/Analysis/SimplifyNestedUsingStatementAnalyzer.cs b/src/Analyzers/CSharp/Analysis/SimplifyNestedUsingStatementAnalyzer.cs index de3bcedc89..3a525ceecf 100644 --- a/src/Analyzers/CSharp/Analysis/SimplifyNestedUsingStatementAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/SimplifyNestedUsingStatementAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/SimplifyNullCheckAnalyzer.cs b/src/Analyzers/CSharp/Analysis/SimplifyNullCheckAnalyzer.cs index 3b23124452..8d94d00b63 100644 --- a/src/Analyzers/CSharp/Analysis/SimplifyNullCheckAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/SimplifyNullCheckAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/Analyzers/CSharp/Analysis/SimplifyNullableOfTAnalyzer.cs b/src/Analyzers/CSharp/Analysis/SimplifyNullableOfTAnalyzer.cs index 849c33a0cf..051b7478d2 100644 --- a/src/Analyzers/CSharp/Analysis/SimplifyNullableOfTAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/SimplifyNullableOfTAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/Analyzers/CSharp/Analysis/SingleLineDocumentationCommentTriviaAnalyzer.cs b/src/Analyzers/CSharp/Analysis/SingleLineDocumentationCommentTriviaAnalyzer.cs index 8356cbbd94..8ce2c52225 100644 --- a/src/Analyzers/CSharp/Analysis/SingleLineDocumentationCommentTriviaAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/SingleLineDocumentationCommentTriviaAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/SortEnumMembersAnalyzer.cs b/src/Analyzers/CSharp/Analysis/SortEnumMembersAnalyzer.cs index 92d2951560..6aedac9280 100644 --- a/src/Analyzers/CSharp/Analysis/SortEnumMembersAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/SortEnumMembersAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/Analyzers/CSharp/Analysis/SplitVariableDeclarationAnalyzer.cs b/src/Analyzers/CSharp/Analysis/SplitVariableDeclarationAnalyzer.cs index 1d3b7b18c7..580a30b381 100644 --- a/src/Analyzers/CSharp/Analysis/SplitVariableDeclarationAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/SplitVariableDeclarationAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Analyzers/CSharp/Analysis/StaticMemberInGenericTypeShouldUseTypeParameterAnalyzer.cs b/src/Analyzers/CSharp/Analysis/StaticMemberInGenericTypeShouldUseTypeParameterAnalyzer.cs index 07ef6c279b..0d18ee8a87 100644 --- a/src/Analyzers/CSharp/Analysis/StaticMemberInGenericTypeShouldUseTypeParameterAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/StaticMemberInGenericTypeShouldUseTypeParameterAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Diagnostics; diff --git a/src/Analyzers/CSharp/Analysis/ThrowingOfNewNotImplementedExceptionAnalyzer.cs b/src/Analyzers/CSharp/Analysis/ThrowingOfNewNotImplementedExceptionAnalyzer.cs index 71efd7bc80..90f90cebf7 100644 --- a/src/Analyzers/CSharp/Analysis/ThrowingOfNewNotImplementedExceptionAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/ThrowingOfNewNotImplementedExceptionAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/UnconstrainedTypeParameterCheckedForNullAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UnconstrainedTypeParameterCheckedForNullAnalyzer.cs index fe82e20e3a..ea4f1d33e7 100644 --- a/src/Analyzers/CSharp/Analysis/UnconstrainedTypeParameterCheckedForNullAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UnconstrainedTypeParameterCheckedForNullAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/UnncessaryNullForgivingOperatorAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UnncessaryNullForgivingOperatorAnalyzer.cs index bf12dc135b..f191b8cae1 100644 --- a/src/Analyzers/CSharp/Analysis/UnncessaryNullForgivingOperatorAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UnncessaryNullForgivingOperatorAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/UnnecessaryAssignmentAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UnnecessaryAssignmentAnalyzer.cs index 308ef81bcd..44050ef0d4 100644 --- a/src/Analyzers/CSharp/Analysis/UnnecessaryAssignmentAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UnnecessaryAssignmentAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/Analyzers/CSharp/Analysis/UnnecessaryEnumFlagAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UnnecessaryEnumFlagAnalyzer.cs index 2ba984900e..fe10d18ecb 100644 --- a/src/Analyzers/CSharp/Analysis/UnnecessaryEnumFlagAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UnnecessaryEnumFlagAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/UnnecessaryExplicitUseOfEnumeratorAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UnnecessaryExplicitUseOfEnumeratorAnalyzer.cs index e8ceb1bf21..06af60fc52 100644 --- a/src/Analyzers/CSharp/Analysis/UnnecessaryExplicitUseOfEnumeratorAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UnnecessaryExplicitUseOfEnumeratorAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/UnnecessaryInterpolatedStringAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UnnecessaryInterpolatedStringAnalyzer.cs index f833d860b9..d1ae48acd9 100644 --- a/src/Analyzers/CSharp/Analysis/UnnecessaryInterpolatedStringAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UnnecessaryInterpolatedStringAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/UnnecessaryInterpolationAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UnnecessaryInterpolationAnalyzer.cs index 7423fcb473..5a95077382 100644 --- a/src/Analyzers/CSharp/Analysis/UnnecessaryInterpolationAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UnnecessaryInterpolationAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/UnnecessaryNullCheckAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UnnecessaryNullCheckAnalyzer.cs index 405a25b441..d990bd7b4d 100644 --- a/src/Analyzers/CSharp/Analysis/UnnecessaryNullCheckAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UnnecessaryNullCheckAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/UnnecessaryUnsafeContextAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UnnecessaryUnsafeContextAnalyzer.cs index c70060c6b3..c4a258dd46 100644 --- a/src/Analyzers/CSharp/Analysis/UnnecessaryUnsafeContextAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UnnecessaryUnsafeContextAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/UnnecessaryUsageOfEnumeratorWalker.cs b/src/Analyzers/CSharp/Analysis/UnnecessaryUsageOfEnumeratorWalker.cs index bec1323cb7..9086c906c8 100644 --- a/src/Analyzers/CSharp/Analysis/UnnecessaryUsageOfEnumeratorWalker.cs +++ b/src/Analyzers/CSharp/Analysis/UnnecessaryUsageOfEnumeratorWalker.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/Analyzers/CSharp/Analysis/UnnecessaryUsageOfVerbatimStringLiteralAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UnnecessaryUsageOfVerbatimStringLiteralAnalyzer.cs index ffc6dae33a..6746e9ad21 100644 --- a/src/Analyzers/CSharp/Analysis/UnnecessaryUsageOfVerbatimStringLiteralAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UnnecessaryUsageOfVerbatimStringLiteralAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/UnusedMember/UnityScriptMethods.cs b/src/Analyzers/CSharp/Analysis/UnusedMember/UnityScriptMethods.cs index 6a9cf78c17..af96958c8e 100644 --- a/src/Analyzers/CSharp/Analysis/UnusedMember/UnityScriptMethods.cs +++ b/src/Analyzers/CSharp/Analysis/UnusedMember/UnityScriptMethods.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/Analyzers/CSharp/Analysis/UnusedMember/UnusedMemberAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UnusedMember/UnusedMemberAnalyzer.cs index 018a10652c..ac7d03fc19 100644 --- a/src/Analyzers/CSharp/Analysis/UnusedMember/UnusedMemberAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UnusedMember/UnusedMemberAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/UnusedMember/UnusedMemberWalker.cs b/src/Analyzers/CSharp/Analysis/UnusedMember/UnusedMemberWalker.cs index 4020616259..58a414b95d 100644 --- a/src/Analyzers/CSharp/Analysis/UnusedMember/UnusedMemberWalker.cs +++ b/src/Analyzers/CSharp/Analysis/UnusedMember/UnusedMemberWalker.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/UnusedParameter/UnusedParameterAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UnusedParameter/UnusedParameterAnalyzer.cs index bf87777968..4419054879 100644 --- a/src/Analyzers/CSharp/Analysis/UnusedParameter/UnusedParameterAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UnusedParameter/UnusedParameterAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/UnusedParameter/UnusedParameterWalker.cs b/src/Analyzers/CSharp/Analysis/UnusedParameter/UnusedParameterWalker.cs index af0c29e94d..6076efcb3d 100644 --- a/src/Analyzers/CSharp/Analysis/UnusedParameter/UnusedParameterWalker.cs +++ b/src/Analyzers/CSharp/Analysis/UnusedParameter/UnusedParameterWalker.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Analyzers/CSharp/Analysis/UseAnonymousFunctionOrMethodGroupAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseAnonymousFunctionOrMethodGroupAnalyzer.cs index e3066344b9..e322ca3b40 100644 --- a/src/Analyzers/CSharp/Analysis/UseAnonymousFunctionOrMethodGroupAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseAnonymousFunctionOrMethodGroupAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/UseAsyncAwaitAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseAsyncAwaitAnalyzer.cs index 95feef23f8..721c363928 100644 --- a/src/Analyzers/CSharp/Analysis/UseAsyncAwaitAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseAsyncAwaitAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Analyzers/CSharp/Analysis/UseAttributeUsageAttributeAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseAttributeUsageAttributeAnalyzer.cs index 9f6a68bcfd..7508cc4a9a 100644 --- a/src/Analyzers/CSharp/Analysis/UseAttributeUsageAttributeAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseAttributeUsageAttributeAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/UseAutoPropertyAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseAutoPropertyAnalyzer.cs index c9808c2424..e3b34147a9 100644 --- a/src/Analyzers/CSharp/Analysis/UseAutoPropertyAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseAutoPropertyAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/UseBlockBodyOrExpressionBodyAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseBlockBodyOrExpressionBodyAnalyzer.cs index 594e5bfb54..5a7fdffa5a 100644 --- a/src/Analyzers/CSharp/Analysis/UseBlockBodyOrExpressionBodyAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseBlockBodyOrExpressionBodyAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/UseCoalesceExpressionAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseCoalesceExpressionAnalyzer.cs index fa827cf9c0..3d0fdf4587 100644 --- a/src/Analyzers/CSharp/Analysis/UseCoalesceExpressionAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseCoalesceExpressionAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/UseCompoundAssignmentAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseCompoundAssignmentAnalyzer.cs index a41abece50..b4209fa4d4 100644 --- a/src/Analyzers/CSharp/Analysis/UseCompoundAssignmentAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseCompoundAssignmentAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/UseConditionalAccessAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseConditionalAccessAnalyzer.cs index fe4d875518..2605499c36 100644 --- a/src/Analyzers/CSharp/Analysis/UseConditionalAccessAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseConditionalAccessAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/UseConstantInsteadOfFieldAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseConstantInsteadOfFieldAnalyzer.cs index c1d5bed8c1..0275dfaa16 100644 --- a/src/Analyzers/CSharp/Analysis/UseConstantInsteadOfFieldAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseConstantInsteadOfFieldAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/UseCountOrLengthPropertyInsteadOfAnyMethodAnalysis.cs b/src/Analyzers/CSharp/Analysis/UseCountOrLengthPropertyInsteadOfAnyMethodAnalysis.cs index cb7cb04bde..a72903ea92 100644 --- a/src/Analyzers/CSharp/Analysis/UseCountOrLengthPropertyInsteadOfAnyMethodAnalysis.cs +++ b/src/Analyzers/CSharp/Analysis/UseCountOrLengthPropertyInsteadOfAnyMethodAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/UseEmptyStringLiteralOrStringEmptyAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseEmptyStringLiteralOrStringEmptyAnalyzer.cs index 35970045cf..6a41c9a12f 100644 --- a/src/Analyzers/CSharp/Analysis/UseEmptyStringLiteralOrStringEmptyAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseEmptyStringLiteralOrStringEmptyAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/UseEnumFieldExplicitlyAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseEnumFieldExplicitlyAnalyzer.cs index 74b5d16f1b..7e79e2f0cf 100644 --- a/src/Analyzers/CSharp/Analysis/UseEnumFieldExplicitlyAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseEnumFieldExplicitlyAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/UseEventArgsEmptyAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseEventArgsEmptyAnalyzer.cs index eff1ce3633..3e3d2c232d 100644 --- a/src/Analyzers/CSharp/Analysis/UseEventArgsEmptyAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseEventArgsEmptyAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/UseExceptionFilterAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseExceptionFilterAnalyzer.cs index 56f5d060b2..822acb1c3f 100644 --- a/src/Analyzers/CSharp/Analysis/UseExceptionFilterAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseExceptionFilterAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/UseExclusiveOrOperatorAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseExclusiveOrOperatorAnalyzer.cs index b790e347fe..41e38e7105 100644 --- a/src/Analyzers/CSharp/Analysis/UseExclusiveOrOperatorAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseExclusiveOrOperatorAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/UseExplicitTypeInsteadOfVarInForEachAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseExplicitTypeInsteadOfVarInForEachAnalyzer.cs index c63eda7edf..46ec5e3e86 100644 --- a/src/Analyzers/CSharp/Analysis/UseExplicitTypeInsteadOfVarInForEachAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseExplicitTypeInsteadOfVarInForEachAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/UseExplicitTypeInsteadOfVarWhenTypeIsNotObviousAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseExplicitTypeInsteadOfVarWhenTypeIsNotObviousAnalyzer.cs index 4a196400f6..d11aacac74 100644 --- a/src/Analyzers/CSharp/Analysis/UseExplicitTypeInsteadOfVarWhenTypeIsNotObviousAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseExplicitTypeInsteadOfVarWhenTypeIsNotObviousAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/UseExplicitTypeInsteadOfVarWhenTypeIsObviousAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseExplicitTypeInsteadOfVarWhenTypeIsObviousAnalyzer.cs index 235a675956..02dff3f668 100644 --- a/src/Analyzers/CSharp/Analysis/UseExplicitTypeInsteadOfVarWhenTypeIsObviousAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseExplicitTypeInsteadOfVarWhenTypeIsObviousAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/UseExplicitlyOrImplicitlyTypedArrayAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseExplicitlyOrImplicitlyTypedArrayAnalyzer.cs index bb7e2d1e4a..0e3d5df6ec 100644 --- a/src/Analyzers/CSharp/Analysis/UseExplicitlyOrImplicitlyTypedArrayAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseExplicitlyOrImplicitlyTypedArrayAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/UseForStatementInsteadOfWhileStatementAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseForStatementInsteadOfWhileStatementAnalyzer.cs index 8e83d0765f..9fa9e62577 100644 --- a/src/Analyzers/CSharp/Analysis/UseForStatementInsteadOfWhileStatementAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseForStatementInsteadOfWhileStatementAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/UseGenericEventHandlerAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseGenericEventHandlerAnalyzer.cs index bbeb56b0a5..888315495d 100644 --- a/src/Analyzers/CSharp/Analysis/UseGenericEventHandlerAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseGenericEventHandlerAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/UseHasFlagMethodOrBitwiseOperatorAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseHasFlagMethodOrBitwiseOperatorAnalyzer.cs index 3b98f35724..8743ae6f47 100644 --- a/src/Analyzers/CSharp/Analysis/UseHasFlagMethodOrBitwiseOperatorAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseHasFlagMethodOrBitwiseOperatorAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/Analyzers/CSharp/Analysis/UseImplicitOrExplicitObjectCreationAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseImplicitOrExplicitObjectCreationAnalyzer.cs index 3fde3e9177..bdf0f20c95 100644 --- a/src/Analyzers/CSharp/Analysis/UseImplicitOrExplicitObjectCreationAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseImplicitOrExplicitObjectCreationAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Analyzers/CSharp/Analysis/UseIsOperatorInsteadOfAsOperatorAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseIsOperatorInsteadOfAsOperatorAnalyzer.cs index c720ad5cbf..a32cc24ffe 100644 --- a/src/Analyzers/CSharp/Analysis/UseIsOperatorInsteadOfAsOperatorAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseIsOperatorInsteadOfAsOperatorAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/UseNameOfOperatorAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseNameOfOperatorAnalyzer.cs index 4fc250b211..dc353fb3ab 100644 --- a/src/Analyzers/CSharp/Analysis/UseNameOfOperatorAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseNameOfOperatorAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Analyzers/CSharp/Analysis/UsePatternMatching/UsePatternMatchingInsteadOfAsAndNullCheckAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UsePatternMatching/UsePatternMatchingInsteadOfAsAndNullCheckAnalyzer.cs index a775bea1d2..db646c7859 100644 --- a/src/Analyzers/CSharp/Analysis/UsePatternMatching/UsePatternMatchingInsteadOfAsAndNullCheckAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UsePatternMatching/UsePatternMatchingInsteadOfAsAndNullCheckAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/UsePatternMatching/UsePatternMatchingInsteadOfIsAndCastAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UsePatternMatching/UsePatternMatchingInsteadOfIsAndCastAnalyzer.cs index 5f316178cd..d75db13e60 100644 --- a/src/Analyzers/CSharp/Analysis/UsePatternMatching/UsePatternMatchingInsteadOfIsAndCastAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UsePatternMatching/UsePatternMatchingInsteadOfIsAndCastAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/Analyzers/CSharp/Analysis/UsePatternMatching/UsePatternMatchingWalker.cs b/src/Analyzers/CSharp/Analysis/UsePatternMatching/UsePatternMatchingWalker.cs index 92e1aa991a..db007fac45 100644 --- a/src/Analyzers/CSharp/Analysis/UsePatternMatching/UsePatternMatchingWalker.cs +++ b/src/Analyzers/CSharp/Analysis/UsePatternMatching/UsePatternMatchingWalker.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/Analyzers/CSharp/Analysis/UsePredefinedTypeAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UsePredefinedTypeAnalyzer.cs index 6a84b133e1..a035737989 100644 --- a/src/Analyzers/CSharp/Analysis/UsePredefinedTypeAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UsePredefinedTypeAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/UseRegexInstanceInsteadOfStaticMethodAnalysis.cs b/src/Analyzers/CSharp/Analysis/UseRegexInstanceInsteadOfStaticMethodAnalysis.cs index dbed45c9d2..5730ba69f3 100644 --- a/src/Analyzers/CSharp/Analysis/UseRegexInstanceInsteadOfStaticMethodAnalysis.cs +++ b/src/Analyzers/CSharp/Analysis/UseRegexInstanceInsteadOfStaticMethodAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/UseShortCircuitingOperatorAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseShortCircuitingOperatorAnalyzer.cs index 6defcfcc61..acb5590e73 100644 --- a/src/Analyzers/CSharp/Analysis/UseShortCircuitingOperatorAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseShortCircuitingOperatorAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/UseStringComparisonAnalysis.cs b/src/Analyzers/CSharp/Analysis/UseStringComparisonAnalysis.cs index 2679abf339..3f5d37ed56 100644 --- a/src/Analyzers/CSharp/Analysis/UseStringComparisonAnalysis.cs +++ b/src/Analyzers/CSharp/Analysis/UseStringComparisonAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Linq; diff --git a/src/Analyzers/CSharp/Analysis/UseStringIsNullOrEmptyMethodAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseStringIsNullOrEmptyMethodAnalyzer.cs index d7f8b35ef6..53603c6190 100644 --- a/src/Analyzers/CSharp/Analysis/UseStringIsNullOrEmptyMethodAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseStringIsNullOrEmptyMethodAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/UseStringLengthInsteadOfComparisonWithEmptyStringAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseStringLengthInsteadOfComparisonWithEmptyStringAnalyzer.cs index 77afb23775..e55d69f86e 100644 --- a/src/Analyzers/CSharp/Analysis/UseStringLengthInsteadOfComparisonWithEmptyStringAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseStringLengthInsteadOfComparisonWithEmptyStringAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/Analyzers/CSharp/Analysis/UseUnaryOperatorInsteadOfAssignmentAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseUnaryOperatorInsteadOfAssignmentAnalyzer.cs index 86d1a70773..94397b0b09 100644 --- a/src/Analyzers/CSharp/Analysis/UseUnaryOperatorInsteadOfAssignmentAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseUnaryOperatorInsteadOfAssignmentAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Analyzers/CSharp/Analysis/UseVarInsteadOfExplicitTypeInForEachAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseVarInsteadOfExplicitTypeInForEachAnalyzer.cs index f09bacc92f..b809f2d84c 100644 --- a/src/Analyzers/CSharp/Analysis/UseVarInsteadOfExplicitTypeInForEachAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseVarInsteadOfExplicitTypeInForEachAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/UseVarInsteadOfExplicitTypeWhenTypeIsNotObviousAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseVarInsteadOfExplicitTypeWhenTypeIsNotObviousAnalyzer.cs index 9ae1acd955..05af244467 100644 --- a/src/Analyzers/CSharp/Analysis/UseVarInsteadOfExplicitTypeWhenTypeIsNotObviousAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseVarInsteadOfExplicitTypeWhenTypeIsNotObviousAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/UseVarInsteadOfExplicitTypeWhenTypeIsObviousAnalyzer.cs b/src/Analyzers/CSharp/Analysis/UseVarInsteadOfExplicitTypeWhenTypeIsObviousAnalyzer.cs index 176a78fc85..3808be7387 100644 --- a/src/Analyzers/CSharp/Analysis/UseVarInsteadOfExplicitTypeWhenTypeIsObviousAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/UseVarInsteadOfExplicitTypeWhenTypeIsObviousAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/ValidateArgumentsCorrectlyAnalyzer.cs b/src/Analyzers/CSharp/Analysis/ValidateArgumentsCorrectlyAnalyzer.cs index 0673a06d1a..299d702056 100644 --- a/src/Analyzers/CSharp/Analysis/ValidateArgumentsCorrectlyAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/ValidateArgumentsCorrectlyAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/Analysis/ValueTypeObjectIsNeverEqualToNullAnalyzer.cs b/src/Analyzers/CSharp/Analysis/ValueTypeObjectIsNeverEqualToNullAnalyzer.cs index 919b21dae4..1e8657dd29 100644 --- a/src/Analyzers/CSharp/Analysis/ValueTypeObjectIsNeverEqualToNullAnalyzer.cs +++ b/src/Analyzers/CSharp/Analysis/ValueTypeObjectIsNeverEqualToNullAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/CSharp/AnalyzerOptionDiagnosticIdentifiers.Generated.cs b/src/Analyzers/CSharp/AnalyzerOptionDiagnosticIdentifiers.Generated.cs index f39bfe25f0..3eb0799aa9 100644 --- a/src/Analyzers/CSharp/AnalyzerOptionDiagnosticIdentifiers.Generated.cs +++ b/src/Analyzers/CSharp/AnalyzerOptionDiagnosticIdentifiers.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/Analyzers/CSharp/AnalyzerOptions.Generated.cs b/src/Analyzers/CSharp/AnalyzerOptions.Generated.cs index 2c389b32eb..4b15bd230e 100644 --- a/src/Analyzers/CSharp/AnalyzerOptions.Generated.cs +++ b/src/Analyzers/CSharp/AnalyzerOptions.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/Analyzers/CSharp/CSharpDiagnosticHelpers.cs b/src/Analyzers/CSharp/CSharpDiagnosticHelpers.cs index 8a1e6eb97b..d41c905e39 100644 --- a/src/Analyzers/CSharp/CSharpDiagnosticHelpers.cs +++ b/src/Analyzers/CSharp/CSharpDiagnosticHelpers.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Analyzers/CSharp/DiagnosticIdentifiers.Deprecated.Generated.cs b/src/Analyzers/CSharp/DiagnosticIdentifiers.Deprecated.Generated.cs index aeb7a9e300..11750a56f4 100644 --- a/src/Analyzers/CSharp/DiagnosticIdentifiers.Deprecated.Generated.cs +++ b/src/Analyzers/CSharp/DiagnosticIdentifiers.Deprecated.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/Analyzers/CSharp/DiagnosticIdentifiers.Generated.cs b/src/Analyzers/CSharp/DiagnosticIdentifiers.Generated.cs index 1c6fa3d8d3..0b82d84940 100644 --- a/src/Analyzers/CSharp/DiagnosticIdentifiers.Generated.cs +++ b/src/Analyzers/CSharp/DiagnosticIdentifiers.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/Analyzers/CSharp/DiagnosticRules.Deprecated.Generated.cs b/src/Analyzers/CSharp/DiagnosticRules.Deprecated.Generated.cs index 0d7f633d25..6c1ddb15dc 100644 --- a/src/Analyzers/CSharp/DiagnosticRules.Deprecated.Generated.cs +++ b/src/Analyzers/CSharp/DiagnosticRules.Deprecated.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/Analyzers/CSharp/DiagnosticRules.Generated.cs b/src/Analyzers/CSharp/DiagnosticRules.Generated.cs index 26be801935..5b2157255a 100644 --- a/src/Analyzers/CSharp/DiagnosticRules.Generated.cs +++ b/src/Analyzers/CSharp/DiagnosticRules.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/Analyzers/CSharp/NodeSymbolInfo.cs b/src/Analyzers/CSharp/NodeSymbolInfo.cs index 277175a231..5fcbb9eb80 100644 --- a/src/Analyzers/CSharp/NodeSymbolInfo.cs +++ b/src/Analyzers/CSharp/NodeSymbolInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using Microsoft.CodeAnalysis; diff --git a/src/Analyzers/GlobalSuppressions.cs b/src/Analyzers/GlobalSuppressions.cs index d82c3a00c1..7041318ed6 100644 --- a/src/Analyzers/GlobalSuppressions.cs +++ b/src/Analyzers/GlobalSuppressions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // This file is used by Code Analysis to maintain SuppressMessage // attributes that are applied to this project. diff --git a/src/CSharp.Workspaces/CSharp/CSharpSyntaxFactsService.cs b/src/CSharp.Workspaces/CSharp/CSharpSyntaxFactsService.cs index c1eb790777..a174e512d0 100644 --- a/src/CSharp.Workspaces/CSharp/CSharpSyntaxFactsService.cs +++ b/src/CSharp.Workspaces/CSharp/CSharpSyntaxFactsService.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Composition; using Microsoft.CodeAnalysis; diff --git a/src/CSharp.Workspaces/CSharp/CSharpTypeFactory.cs b/src/CSharp.Workspaces/CSharp/CSharpTypeFactory.cs index 837a6b776e..155134fbf4 100644 --- a/src/CSharp.Workspaces/CSharp/CSharpTypeFactory.cs +++ b/src/CSharp.Workspaces/CSharp/CSharpTypeFactory.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; using static Microsoft.CodeAnalysis.CSharp.SyntaxFactory; diff --git a/src/CSharp.Workspaces/CSharp/CodeMetrics/CSharpCodeMetricsService.cs b/src/CSharp.Workspaces/CSharp/CodeMetrics/CSharpCodeMetricsService.cs index f088ceaf23..6e8f3c5bc0 100644 --- a/src/CSharp.Workspaces/CSharp/CodeMetrics/CSharpCodeMetricsService.cs +++ b/src/CSharp.Workspaces/CSharp/CodeMetrics/CSharpCodeMetricsService.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Composition; using System.Threading; diff --git a/src/CSharp.Workspaces/CSharp/CodeMetrics/CSharpLinesWalker.cs b/src/CSharp.Workspaces/CSharp/CodeMetrics/CSharpLinesWalker.cs index 579b83c06b..d464762af5 100644 --- a/src/CSharp.Workspaces/CSharp/CodeMetrics/CSharpLinesWalker.cs +++ b/src/CSharp.Workspaces/CSharp/CodeMetrics/CSharpLinesWalker.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using Microsoft.CodeAnalysis; diff --git a/src/CSharp.Workspaces/CSharp/CodeMetrics/CSharpLogicalLinesWalker.cs b/src/CSharp.Workspaces/CSharp/CodeMetrics/CSharpLogicalLinesWalker.cs index 83b0ea097e..d3a62c5a13 100644 --- a/src/CSharp.Workspaces/CSharp/CodeMetrics/CSharpLogicalLinesWalker.cs +++ b/src/CSharp.Workspaces/CSharp/CodeMetrics/CSharpLogicalLinesWalker.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/CSharp.Workspaces/CSharp/CodeMetrics/CSharpPhysicalLinesWalker.cs b/src/CSharp.Workspaces/CSharp/CodeMetrics/CSharpPhysicalLinesWalker.cs index fa63596f8b..b81628fe0f 100644 --- a/src/CSharp.Workspaces/CSharp/CodeMetrics/CSharpPhysicalLinesWalker.cs +++ b/src/CSharp.Workspaces/CSharp/CodeMetrics/CSharpPhysicalLinesWalker.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using Microsoft.CodeAnalysis; diff --git a/src/CSharp.Workspaces/CSharp/DefaultSyntaxOptions.cs b/src/CSharp.Workspaces/CSharp/DefaultSyntaxOptions.cs index df15492b81..c9b8711afa 100644 --- a/src/CSharp.Workspaces/CSharp/DefaultSyntaxOptions.cs +++ b/src/CSharp.Workspaces/CSharp/DefaultSyntaxOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/CSharp.Workspaces/CSharp/Extensions/WorkspaceExtensions.cs b/src/CSharp.Workspaces/CSharp/Extensions/WorkspaceExtensions.cs index 97e4bc9cbe..63213e1c92 100644 --- a/src/CSharp.Workspaces/CSharp/Extensions/WorkspaceExtensions.cs +++ b/src/CSharp.Workspaces/CSharp/Extensions/WorkspaceExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CSharp.Workspaces/CSharp/Extensions/WorkspaceSymbolExtensions.cs b/src/CSharp.Workspaces/CSharp/Extensions/WorkspaceSymbolExtensions.cs index 181ff88e4c..f6382562cf 100644 --- a/src/CSharp.Workspaces/CSharp/Extensions/WorkspaceSymbolExtensions.cs +++ b/src/CSharp.Workspaces/CSharp/Extensions/WorkspaceSymbolExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.CodeAnalysis; diff --git a/src/CSharp.Workspaces/CSharp/Extensions/WorkspaceSyntaxExtensions.cs b/src/CSharp.Workspaces/CSharp/Extensions/WorkspaceSyntaxExtensions.cs index db70cbde71..87378e5fe5 100644 --- a/src/CSharp.Workspaces/CSharp/Extensions/WorkspaceSyntaxExtensions.cs +++ b/src/CSharp.Workspaces/CSharp/Extensions/WorkspaceSyntaxExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.CodeAnalysis; diff --git a/src/CSharp.Workspaces/CSharp/FindSymbols/CSharpFindSymbolService.cs b/src/CSharp.Workspaces/CSharp/FindSymbols/CSharpFindSymbolService.cs index 4b65ef5a58..12b55f190e 100644 --- a/src/CSharp.Workspaces/CSharp/FindSymbols/CSharpFindSymbolService.cs +++ b/src/CSharp.Workspaces/CSharp/FindSymbols/CSharpFindSymbolService.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CSharp.Workspaces/CSharp/FindSymbols/LocalSymbolFinder.cs b/src/CSharp.Workspaces/CSharp/FindSymbols/LocalSymbolFinder.cs index 425b453afe..e878662ec8 100644 --- a/src/CSharp.Workspaces/CSharp/FindSymbols/LocalSymbolFinder.cs +++ b/src/CSharp.Workspaces/CSharp/FindSymbols/LocalSymbolFinder.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Diagnostics; diff --git a/src/CSharp.Workspaces/CSharp/FindSymbols/LocalWalker.cs b/src/CSharp.Workspaces/CSharp/FindSymbols/LocalWalker.cs index f8c8d466e1..171e65ef74 100644 --- a/src/CSharp.Workspaces/CSharp/FindSymbols/LocalWalker.cs +++ b/src/CSharp.Workspaces/CSharp/FindSymbols/LocalWalker.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/CSharp.Workspaces/CSharp/RemoveCommentHelper.cs b/src/CSharp.Workspaces/CSharp/RemoveCommentHelper.cs index d960ac99da..e5290f7fc0 100644 --- a/src/CSharp.Workspaces/CSharp/RemoveCommentHelper.cs +++ b/src/CSharp.Workspaces/CSharp/RemoveCommentHelper.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using Microsoft.CodeAnalysis; diff --git a/src/CSharp.Workspaces/CSharp/Spelling/CSharpSpellingDiagnostic.cs b/src/CSharp.Workspaces/CSharp/Spelling/CSharpSpellingDiagnostic.cs index f92297f4f5..cae95e216b 100644 --- a/src/CSharp.Workspaces/CSharp/Spelling/CSharpSpellingDiagnostic.cs +++ b/src/CSharp.Workspaces/CSharp/Spelling/CSharpSpellingDiagnostic.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/CSharp.Workspaces/CSharp/Spelling/CSharpSpellingService.CSharpSpellingAnalyzer.cs b/src/CSharp.Workspaces/CSharp/Spelling/CSharpSpellingService.CSharpSpellingAnalyzer.cs index 80f2814604..e19e50d5de 100644 --- a/src/CSharp.Workspaces/CSharp/Spelling/CSharpSpellingService.CSharpSpellingAnalyzer.cs +++ b/src/CSharp.Workspaces/CSharp/Spelling/CSharpSpellingService.CSharpSpellingAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Diagnostics.CodeAnalysis; diff --git a/src/CSharp.Workspaces/CSharp/Spelling/CSharpSpellingService.cs b/src/CSharp.Workspaces/CSharp/Spelling/CSharpSpellingService.cs index 3d00fc80c6..c965eb4969 100644 --- a/src/CSharp.Workspaces/CSharp/Spelling/CSharpSpellingService.cs +++ b/src/CSharp.Workspaces/CSharp/Spelling/CSharpSpellingService.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CSharp.Workspaces/CSharp/Spelling/CSharpSpellingWalker.cs b/src/CSharp.Workspaces/CSharp/Spelling/CSharpSpellingWalker.cs index d99918ec02..a62f2686f4 100644 --- a/src/CSharp.Workspaces/CSharp/Spelling/CSharpSpellingWalker.cs +++ b/src/CSharp.Workspaces/CSharp/Spelling/CSharpSpellingWalker.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Diagnostics; diff --git a/src/CSharp.Workspaces/CSharp/SyntaxInverter.cs b/src/CSharp.Workspaces/CSharp/SyntaxInverter.cs index d0c83924d3..5ba2053baf 100644 --- a/src/CSharp.Workspaces/CSharp/SyntaxInverter.cs +++ b/src/CSharp.Workspaces/CSharp/SyntaxInverter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/CSharp.Workspaces/CSharp/SyntaxLogicalInverter.cs b/src/CSharp.Workspaces/CSharp/SyntaxLogicalInverter.cs index e46506796d..b45b6f380b 100644 --- a/src/CSharp.Workspaces/CSharp/SyntaxLogicalInverter.cs +++ b/src/CSharp.Workspaces/CSharp/SyntaxLogicalInverter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/CSharp.Workspaces/CSharp/SyntaxLogicalInverterOptions.cs b/src/CSharp.Workspaces/CSharp/SyntaxLogicalInverterOptions.cs index 98892d7de8..27ae36ec3c 100644 --- a/src/CSharp.Workspaces/CSharp/SyntaxLogicalInverterOptions.cs +++ b/src/CSharp.Workspaces/CSharp/SyntaxLogicalInverterOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable RCS1223 diff --git a/src/CSharp/CSharp/BracesAnalysis.cs b/src/CSharp/CSharp/BracesAnalysis.cs index b7cb1ca834..65ca0ac795 100644 --- a/src/CSharp/CSharp/BracesAnalysis.cs +++ b/src/CSharp/CSharp/BracesAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/CSharp/CSharp/BracesAnalysisFlags.cs b/src/CSharp/CSharp/BracesAnalysisFlags.cs index 2a85a7e046..ab75d0f805 100644 --- a/src/CSharp/CSharp/BracesAnalysisFlags.cs +++ b/src/CSharp/CSharp/BracesAnalysisFlags.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/CSharp/CSharp/CSharpFactory.cs b/src/CSharp/CSharp/CSharpFactory.cs index 142c2b1f6c..0cf2662fa0 100644 --- a/src/CSharp/CSharp/CSharpFactory.cs +++ b/src/CSharp/CSharp/CSharpFactory.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Linq; diff --git a/src/CSharp/CSharp/CSharpFacts.cs b/src/CSharp/CSharp/CSharpFacts.cs index cc1df2f63c..92182f71d5 100644 --- a/src/CSharp/CSharp/CSharpFacts.cs +++ b/src/CSharp/CSharp/CSharpFacts.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/CSharp/CSharp/CSharpLanguageFeature.cs b/src/CSharp/CSharp/CSharpLanguageFeature.cs index 9e7c8f8e4a..f712b9b8d2 100644 --- a/src/CSharp/CSharp/CSharpLanguageFeature.cs +++ b/src/CSharp/CSharp/CSharpLanguageFeature.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp; diff --git a/src/CSharp/CSharp/CSharpNameGenerator.cs b/src/CSharp/CSharp/CSharpNameGenerator.cs index 64b4c77f05..c26ef8af1c 100644 --- a/src/CSharp/CSharp/CSharpNameGenerator.cs +++ b/src/CSharp/CSharp/CSharpNameGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/CSharp/CSharp/CSharpOverriddenSymbolInfo.cs b/src/CSharp/CSharp/CSharpOverriddenSymbolInfo.cs index 794465a17b..4a79dae720 100644 --- a/src/CSharp/CSharp/CSharpOverriddenSymbolInfo.cs +++ b/src/CSharp/CSharp/CSharpOverriddenSymbolInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading; diff --git a/src/CSharp/CSharp/CSharpTypeAnalysis.cs b/src/CSharp/CSharp/CSharpTypeAnalysis.cs index d0dbf165ff..da35861e82 100644 --- a/src/CSharp/CSharp/CSharpTypeAnalysis.cs +++ b/src/CSharp/CSharp/CSharpTypeAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/CSharp/CSharp/CSharpUtility.cs b/src/CSharp/CSharp/CSharpUtility.cs index d0171d890c..a03d623f73 100644 --- a/src/CSharp/CSharp/CSharpUtility.cs +++ b/src/CSharp/CSharp/CSharpUtility.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CSharp/CSharp/CommentFilter.cs b/src/CSharp/CSharp/CommentFilter.cs index d1ef8e47d9..6005ca5c96 100644 --- a/src/CSharp/CSharp/CommentFilter.cs +++ b/src/CSharp/CSharp/CommentFilter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/CSharp/CSharp/CompilerDiagnosticIdentifiers.Generated.cs b/src/CSharp/CSharp/CompilerDiagnosticIdentifiers.Generated.cs index b51c4c0bf2..53af8e781a 100644 --- a/src/CSharp/CSharp/CompilerDiagnosticIdentifiers.Generated.cs +++ b/src/CSharp/CSharp/CompilerDiagnosticIdentifiers.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/CSharp/CSharp/Documentation/AddBaseOrNewDocumentationCommentRewriter.cs b/src/CSharp/CSharp/Documentation/AddBaseOrNewDocumentationCommentRewriter.cs index f9ddb0c201..e66149ee1e 100644 --- a/src/CSharp/CSharp/Documentation/AddBaseOrNewDocumentationCommentRewriter.cs +++ b/src/CSharp/CSharp/Documentation/AddBaseOrNewDocumentationCommentRewriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using Microsoft.CodeAnalysis; diff --git a/src/CSharp/CSharp/Documentation/AddNewDocumentationCommentRewriter.cs b/src/CSharp/CSharp/Documentation/AddNewDocumentationCommentRewriter.cs index 1bab643cf8..d70cdc01f8 100644 --- a/src/CSharp/CSharp/Documentation/AddNewDocumentationCommentRewriter.cs +++ b/src/CSharp/CSharp/Documentation/AddNewDocumentationCommentRewriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.CodeAnalysis; diff --git a/src/CSharp/CSharp/Documentation/DocumentationCommentGenerator.cs b/src/CSharp/CSharp/Documentation/DocumentationCommentGenerator.cs index c06cc8139e..1c28ae15dc 100644 --- a/src/CSharp/CSharp/Documentation/DocumentationCommentGenerator.cs +++ b/src/CSharp/CSharp/Documentation/DocumentationCommentGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CSharp/CSharp/Documentation/DocumentationCommentInserter.cs b/src/CSharp/CSharp/Documentation/DocumentationCommentInserter.cs index bf8abe49c6..bba28b6aba 100644 --- a/src/CSharp/CSharp/Documentation/DocumentationCommentInserter.cs +++ b/src/CSharp/CSharp/Documentation/DocumentationCommentInserter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Text.RegularExpressions; diff --git a/src/CSharp/CSharp/Documentation/DocumentationCommentTriviaFactory.cs b/src/CSharp/CSharp/Documentation/DocumentationCommentTriviaFactory.cs index 5057e8ea88..90f6c411a6 100644 --- a/src/CSharp/CSharp/Documentation/DocumentationCommentTriviaFactory.cs +++ b/src/CSharp/CSharp/Documentation/DocumentationCommentTriviaFactory.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/CSharp/CSharp/Documentation/DocumentationCommentTriviaRewriter.cs b/src/CSharp/CSharp/Documentation/DocumentationCommentTriviaRewriter.cs index a9980e19a3..9d2aa38f27 100644 --- a/src/CSharp/CSharp/Documentation/DocumentationCommentTriviaRewriter.cs +++ b/src/CSharp/CSharp/Documentation/DocumentationCommentTriviaRewriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.CodeAnalysis; diff --git a/src/CSharp/CSharp/EnumMemberDeclarationNameComparer.cs b/src/CSharp/CSharp/EnumMemberDeclarationNameComparer.cs index 568734d02a..c8bf431ab4 100644 --- a/src/CSharp/CSharp/EnumMemberDeclarationNameComparer.cs +++ b/src/CSharp/CSharp/EnumMemberDeclarationNameComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CSharp/CSharp/EnumMemberDeclarationValueComparer.cs b/src/CSharp/CSharp/EnumMemberDeclarationValueComparer.cs index 1238dc67b8..6797771bd5 100644 --- a/src/CSharp/CSharp/EnumMemberDeclarationValueComparer.cs +++ b/src/CSharp/CSharp/EnumMemberDeclarationValueComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CSharp/CSharp/ExpressionChain.Reversed.cs b/src/CSharp/CSharp/ExpressionChain.Reversed.cs index 686985e099..ca58dc3994 100644 --- a/src/CSharp/CSharp/ExpressionChain.Reversed.cs +++ b/src/CSharp/CSharp/ExpressionChain.Reversed.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/CSharp/CSharp/ExpressionChain.cs b/src/CSharp/CSharp/ExpressionChain.cs index 8ff7e969ee..7907e1eb60 100644 --- a/src/CSharp/CSharp/ExpressionChain.cs +++ b/src/CSharp/CSharp/ExpressionChain.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/CSharp/CSharp/Extensions/CSharpExtensions.cs b/src/CSharp/CSharp/Extensions/CSharpExtensions.cs index 697140a1d0..7c49bfbe2a 100644 --- a/src/CSharp/CSharp/Extensions/CSharpExtensions.cs +++ b/src/CSharp/CSharp/Extensions/CSharpExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/CSharp/CSharp/Extensions/EnumExtensions.cs b/src/CSharp/CSharp/Extensions/EnumExtensions.cs index dedfaf0b57..40fcb352f6 100644 --- a/src/CSharp/CSharp/Extensions/EnumExtensions.cs +++ b/src/CSharp/CSharp/Extensions/EnumExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp; diff --git a/src/CSharp/CSharp/Extensions/SymbolExtensions.cs b/src/CSharp/CSharp/Extensions/SymbolExtensions.cs index 039ce332fb..6ac9f125cc 100644 --- a/src/CSharp/CSharp/Extensions/SymbolExtensions.cs +++ b/src/CSharp/CSharp/Extensions/SymbolExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/CSharp/CSharp/Extensions/SyntaxExtensions.cs b/src/CSharp/CSharp/Extensions/SyntaxExtensions.cs index 8556a5318d..01348db94c 100644 --- a/src/CSharp/CSharp/Extensions/SyntaxExtensions.cs +++ b/src/CSharp/CSharp/Extensions/SyntaxExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CSharp/CSharp/IfStatementCascade.cs b/src/CSharp/CSharp/IfStatementCascade.cs index 69241683d3..33f189ddda 100644 --- a/src/CSharp/CSharp/IfStatementCascade.cs +++ b/src/CSharp/CSharp/IfStatementCascade.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/CSharp/CSharp/IfStatementCascadeInfo.cs b/src/CSharp/CSharp/IfStatementCascadeInfo.cs index fe25139ec3..d0e78154b4 100644 --- a/src/CSharp/CSharp/IfStatementCascadeInfo.cs +++ b/src/CSharp/CSharp/IfStatementCascadeInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CSharp/CSharp/IfStatementOrElseClause.cs b/src/CSharp/CSharp/IfStatementOrElseClause.cs index a80cdde183..68f20ae41f 100644 --- a/src/CSharp/CSharp/IfStatementOrElseClause.cs +++ b/src/CSharp/CSharp/IfStatementOrElseClause.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/CSharp/CSharp/MemberDeclarationComparer.cs b/src/CSharp/CSharp/MemberDeclarationComparer.cs index 4d14cb0b16..6e024f1f92 100644 --- a/src/CSharp/CSharp/MemberDeclarationComparer.cs +++ b/src/CSharp/CSharp/MemberDeclarationComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CSharp/CSharp/MemberDeclarationInserter.cs b/src/CSharp/CSharp/MemberDeclarationInserter.cs index 8ba153614f..f6dc0525b3 100644 --- a/src/CSharp/CSharp/MemberDeclarationInserter.cs +++ b/src/CSharp/CSharp/MemberDeclarationInserter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.CodeAnalysis; diff --git a/src/CSharp/CSharp/MemberDeclarationKindComparer.cs b/src/CSharp/CSharp/MemberDeclarationKindComparer.cs index d0e63e81de..25748673b7 100644 --- a/src/CSharp/CSharp/MemberDeclarationKindComparer.cs +++ b/src/CSharp/CSharp/MemberDeclarationKindComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Diagnostics; diff --git a/src/CSharp/CSharp/MemberDeclarationListSelection.cs b/src/CSharp/CSharp/MemberDeclarationListSelection.cs index 7d6938ac1b..c5dbe0c3ca 100644 --- a/src/CSharp/CSharp/MemberDeclarationListSelection.cs +++ b/src/CSharp/CSharp/MemberDeclarationListSelection.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.CodeAnalysis; diff --git a/src/CSharp/CSharp/MethodChain.cs b/src/CSharp/CSharp/MethodChain.cs index 0cb206fd3c..b69dafc3eb 100644 --- a/src/CSharp/CSharp/MethodChain.cs +++ b/src/CSharp/CSharp/MethodChain.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/CSharp/CSharp/ModifierComparer.cs b/src/CSharp/CSharp/ModifierComparer.cs index 7e6e13bb61..6c229c8eea 100644 --- a/src/CSharp/CSharp/ModifierComparer.cs +++ b/src/CSharp/CSharp/ModifierComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using Microsoft.CodeAnalysis; diff --git a/src/CSharp/CSharp/ModifierFilter.cs b/src/CSharp/CSharp/ModifierFilter.cs index fb425abc3e..91f591b034 100644 --- a/src/CSharp/CSharp/ModifierFilter.cs +++ b/src/CSharp/CSharp/ModifierFilter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/CSharp/CSharp/ModifierKindComparer.cs b/src/CSharp/CSharp/ModifierKindComparer.cs index 2cd7a5b177..3f05ff2d3e 100644 --- a/src/CSharp/CSharp/ModifierKindComparer.cs +++ b/src/CSharp/CSharp/ModifierKindComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Diagnostics; diff --git a/src/CSharp/CSharp/ModifierList.cs b/src/CSharp/CSharp/ModifierList.cs index 9c325aee7a..7729b2d13d 100644 --- a/src/CSharp/CSharp/ModifierList.cs +++ b/src/CSharp/CSharp/ModifierList.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CSharp/CSharp/ModifierList`1.cs b/src/CSharp/CSharp/ModifierList`1.cs index 63ea36ec6f..886da36ed5 100644 --- a/src/CSharp/CSharp/ModifierList`1.cs +++ b/src/CSharp/CSharp/ModifierList`1.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CSharp/CSharp/Modifiers.cs b/src/CSharp/CSharp/Modifiers.cs index 98e36cb1ba..f19a9a0bb9 100644 --- a/src/CSharp/CSharp/Modifiers.cs +++ b/src/CSharp/CSharp/Modifiers.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/CSharp/CSharp/NullCheckStyles.cs b/src/CSharp/CSharp/NullCheckStyles.cs index 0c3ba48068..bfa131b845 100644 --- a/src/CSharp/CSharp/NullCheckStyles.cs +++ b/src/CSharp/CSharp/NullCheckStyles.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/CSharp/CSharp/PreprocessorDirectiveFilter.cs b/src/CSharp/CSharp/PreprocessorDirectiveFilter.cs index ec748c11f7..672312725c 100644 --- a/src/CSharp/CSharp/PreprocessorDirectiveFilter.cs +++ b/src/CSharp/CSharp/PreprocessorDirectiveFilter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/CSharp/CSharp/StatementListSelection.cs b/src/CSharp/CSharp/StatementListSelection.cs index 3da987d4fd..196bff09f8 100644 --- a/src/CSharp/CSharp/StatementListSelection.cs +++ b/src/CSharp/CSharp/StatementListSelection.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.CodeAnalysis; diff --git a/src/CSharp/CSharp/StringLiteralParser.cs b/src/CSharp/CSharp/StringLiteralParser.cs index ed2edccd25..5161dd75b4 100644 --- a/src/CSharp/CSharp/StringLiteralParser.cs +++ b/src/CSharp/CSharp/StringLiteralParser.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/CSharp/CSharp/StringLiteralTextBuilder.cs b/src/CSharp/CSharp/StringLiteralTextBuilder.cs index ed937983d3..13a6069b8f 100644 --- a/src/CSharp/CSharp/StringLiteralTextBuilder.cs +++ b/src/CSharp/CSharp/StringLiteralTextBuilder.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/CSharp/CSharp/Syntax/AsExpressionInfo.cs b/src/CSharp/CSharp/Syntax/AsExpressionInfo.cs index e12075e65f..760b6a943f 100644 --- a/src/CSharp/CSharp/Syntax/AsExpressionInfo.cs +++ b/src/CSharp/CSharp/Syntax/AsExpressionInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using Microsoft.CodeAnalysis; diff --git a/src/CSharp/CSharp/Syntax/AssignmentExpressionInfo.cs b/src/CSharp/CSharp/Syntax/AssignmentExpressionInfo.cs index cd5729031c..120d437270 100644 --- a/src/CSharp/CSharp/Syntax/AssignmentExpressionInfo.cs +++ b/src/CSharp/CSharp/Syntax/AssignmentExpressionInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using Microsoft.CodeAnalysis; diff --git a/src/CSharp/CSharp/Syntax/BinaryExpressionInfo.cs b/src/CSharp/CSharp/Syntax/BinaryExpressionInfo.cs index 5b6827f606..a5a023934e 100644 --- a/src/CSharp/CSharp/Syntax/BinaryExpressionInfo.cs +++ b/src/CSharp/CSharp/Syntax/BinaryExpressionInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using Microsoft.CodeAnalysis; diff --git a/src/CSharp/CSharp/Syntax/ConditionalExpressionInfo.cs b/src/CSharp/CSharp/Syntax/ConditionalExpressionInfo.cs index fa1055d265..72ef62bedd 100644 --- a/src/CSharp/CSharp/Syntax/ConditionalExpressionInfo.cs +++ b/src/CSharp/CSharp/Syntax/ConditionalExpressionInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using Microsoft.CodeAnalysis; diff --git a/src/CSharp/CSharp/Syntax/ConditionalStatementInfo.cs b/src/CSharp/CSharp/Syntax/ConditionalStatementInfo.cs index f71f2f1e37..22c7a61834 100644 --- a/src/CSharp/CSharp/Syntax/ConditionalStatementInfo.cs +++ b/src/CSharp/CSharp/Syntax/ConditionalStatementInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using Microsoft.CodeAnalysis; diff --git a/src/CSharp/CSharp/Syntax/GenericInfo.cs b/src/CSharp/CSharp/Syntax/GenericInfo.cs index 7cc57a6e25..cfd392a4d2 100644 --- a/src/CSharp/CSharp/Syntax/GenericInfo.cs +++ b/src/CSharp/CSharp/Syntax/GenericInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/CSharp/CSharp/Syntax/HexNumericLiteralExpressionInfo.cs b/src/CSharp/CSharp/Syntax/HexNumericLiteralExpressionInfo.cs index fc3304a984..2dab69c060 100644 --- a/src/CSharp/CSharp/Syntax/HexNumericLiteralExpressionInfo.cs +++ b/src/CSharp/CSharp/Syntax/HexNumericLiteralExpressionInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/CSharp/CSharp/Syntax/HexNumericLiteralSuffixKind.cs b/src/CSharp/CSharp/Syntax/HexNumericLiteralSuffixKind.cs index ab2d79505e..592129548b 100644 --- a/src/CSharp/CSharp/Syntax/HexNumericLiteralSuffixKind.cs +++ b/src/CSharp/CSharp/Syntax/HexNumericLiteralSuffixKind.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Syntax; diff --git a/src/CSharp/CSharp/Syntax/IsExpressionInfo.cs b/src/CSharp/CSharp/Syntax/IsExpressionInfo.cs index 3464b60205..710ac52258 100644 --- a/src/CSharp/CSharp/Syntax/IsExpressionInfo.cs +++ b/src/CSharp/CSharp/Syntax/IsExpressionInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using Microsoft.CodeAnalysis; diff --git a/src/CSharp/CSharp/Syntax/LocalDeclarationStatementInfo.cs b/src/CSharp/CSharp/Syntax/LocalDeclarationStatementInfo.cs index 9bd6779cc2..a70a87ab47 100644 --- a/src/CSharp/CSharp/Syntax/LocalDeclarationStatementInfo.cs +++ b/src/CSharp/CSharp/Syntax/LocalDeclarationStatementInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using Microsoft.CodeAnalysis; diff --git a/src/CSharp/CSharp/Syntax/MemberDeclarationListInfo.cs b/src/CSharp/CSharp/Syntax/MemberDeclarationListInfo.cs index 60a72022a6..12eb8fdaad 100644 --- a/src/CSharp/CSharp/Syntax/MemberDeclarationListInfo.cs +++ b/src/CSharp/CSharp/Syntax/MemberDeclarationListInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/CSharp/CSharp/Syntax/ModifierListInfo.cs b/src/CSharp/CSharp/Syntax/ModifierListInfo.cs index d47558e9af..5be1b5149f 100644 --- a/src/CSharp/CSharp/Syntax/ModifierListInfo.cs +++ b/src/CSharp/CSharp/Syntax/ModifierListInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CSharp/CSharp/Syntax/NullCheckExpressionInfo.cs b/src/CSharp/CSharp/Syntax/NullCheckExpressionInfo.cs index f64c6795e0..3a06b3c112 100644 --- a/src/CSharp/CSharp/Syntax/NullCheckExpressionInfo.cs +++ b/src/CSharp/CSharp/Syntax/NullCheckExpressionInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/CSharp/CSharp/Syntax/ParameterInfo.cs b/src/CSharp/CSharp/Syntax/ParameterInfo.cs index be9cb0fa45..50731019b4 100644 --- a/src/CSharp/CSharp/Syntax/ParameterInfo.cs +++ b/src/CSharp/CSharp/Syntax/ParameterInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using Microsoft.CodeAnalysis; diff --git a/src/CSharp/CSharp/Syntax/RegionInfo.cs b/src/CSharp/CSharp/Syntax/RegionInfo.cs index d422b9d159..418dd33153 100644 --- a/src/CSharp/CSharp/Syntax/RegionInfo.cs +++ b/src/CSharp/CSharp/Syntax/RegionInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Diagnostics; diff --git a/src/CSharp/CSharp/Syntax/SimpleAssignmentExpressionInfo.cs b/src/CSharp/CSharp/Syntax/SimpleAssignmentExpressionInfo.cs index 4bc1472bc1..f910d04c66 100644 --- a/src/CSharp/CSharp/Syntax/SimpleAssignmentExpressionInfo.cs +++ b/src/CSharp/CSharp/Syntax/SimpleAssignmentExpressionInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using Microsoft.CodeAnalysis; diff --git a/src/CSharp/CSharp/Syntax/SimpleAssignmentStatementInfo.cs b/src/CSharp/CSharp/Syntax/SimpleAssignmentStatementInfo.cs index f6a4380432..f6e8669c26 100644 --- a/src/CSharp/CSharp/Syntax/SimpleAssignmentStatementInfo.cs +++ b/src/CSharp/CSharp/Syntax/SimpleAssignmentStatementInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using Microsoft.CodeAnalysis; diff --git a/src/CSharp/CSharp/Syntax/SimpleIfStatementInfo.cs b/src/CSharp/CSharp/Syntax/SimpleIfStatementInfo.cs index 85ecd93f6b..0beed7c79b 100644 --- a/src/CSharp/CSharp/Syntax/SimpleIfStatementInfo.cs +++ b/src/CSharp/CSharp/Syntax/SimpleIfStatementInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using Microsoft.CodeAnalysis; diff --git a/src/CSharp/CSharp/Syntax/SimpleMemberInvocationExpressionInfo.cs b/src/CSharp/CSharp/Syntax/SimpleMemberInvocationExpressionInfo.cs index 906307da2f..29d715d482 100644 --- a/src/CSharp/CSharp/Syntax/SimpleMemberInvocationExpressionInfo.cs +++ b/src/CSharp/CSharp/Syntax/SimpleMemberInvocationExpressionInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using Microsoft.CodeAnalysis; diff --git a/src/CSharp/CSharp/Syntax/SimpleMemberInvocationStatementInfo.cs b/src/CSharp/CSharp/Syntax/SimpleMemberInvocationStatementInfo.cs index e42d25580c..11d13ab823 100644 --- a/src/CSharp/CSharp/Syntax/SimpleMemberInvocationStatementInfo.cs +++ b/src/CSharp/CSharp/Syntax/SimpleMemberInvocationStatementInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using Microsoft.CodeAnalysis; diff --git a/src/CSharp/CSharp/Syntax/SingleLocalDeclarationStatementInfo.cs b/src/CSharp/CSharp/Syntax/SingleLocalDeclarationStatementInfo.cs index 4fe243832c..dc4245bca2 100644 --- a/src/CSharp/CSharp/Syntax/SingleLocalDeclarationStatementInfo.cs +++ b/src/CSharp/CSharp/Syntax/SingleLocalDeclarationStatementInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using Microsoft.CodeAnalysis; diff --git a/src/CSharp/CSharp/Syntax/SingleParameterLambdaExpressionInfo.cs b/src/CSharp/CSharp/Syntax/SingleParameterLambdaExpressionInfo.cs index 2446d3426e..972c9e2752 100644 --- a/src/CSharp/CSharp/Syntax/SingleParameterLambdaExpressionInfo.cs +++ b/src/CSharp/CSharp/Syntax/SingleParameterLambdaExpressionInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using Microsoft.CodeAnalysis; diff --git a/src/CSharp/CSharp/Syntax/StatementListInfo.cs b/src/CSharp/CSharp/Syntax/StatementListInfo.cs index a6f4c3d720..8c55d2c4c0 100644 --- a/src/CSharp/CSharp/Syntax/StatementListInfo.cs +++ b/src/CSharp/CSharp/Syntax/StatementListInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/CSharp/CSharp/Syntax/StringConcatenationAnalysis.cs b/src/CSharp/CSharp/Syntax/StringConcatenationAnalysis.cs index 2c962ba042..da9022bcd0 100644 --- a/src/CSharp/CSharp/Syntax/StringConcatenationAnalysis.cs +++ b/src/CSharp/CSharp/Syntax/StringConcatenationAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/CSharp/CSharp/Syntax/StringConcatenationExpressionInfo.cs b/src/CSharp/CSharp/Syntax/StringConcatenationExpressionInfo.cs index ec711a781d..d34fea4207 100644 --- a/src/CSharp/CSharp/Syntax/StringConcatenationExpressionInfo.cs +++ b/src/CSharp/CSharp/Syntax/StringConcatenationExpressionInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/CSharp/CSharp/Syntax/StringLiteralExpressionInfo.cs b/src/CSharp/CSharp/Syntax/StringLiteralExpressionInfo.cs index 9a45607095..d33493ac11 100644 --- a/src/CSharp/CSharp/Syntax/StringLiteralExpressionInfo.cs +++ b/src/CSharp/CSharp/Syntax/StringLiteralExpressionInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/CSharp/CSharp/Syntax/SyntaxInfoHelpers.cs b/src/CSharp/CSharp/Syntax/SyntaxInfoHelpers.cs index ef07e95d2a..8200830025 100644 --- a/src/CSharp/CSharp/Syntax/SyntaxInfoHelpers.cs +++ b/src/CSharp/CSharp/Syntax/SyntaxInfoHelpers.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/CSharp/CSharp/Syntax/TypeParameterConstraintInfo.cs b/src/CSharp/CSharp/Syntax/TypeParameterConstraintInfo.cs index baf33b0c00..234a97ce08 100644 --- a/src/CSharp/CSharp/Syntax/TypeParameterConstraintInfo.cs +++ b/src/CSharp/CSharp/Syntax/TypeParameterConstraintInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using Microsoft.CodeAnalysis; diff --git a/src/CSharp/CSharp/Syntax/UsingDirectiveListInfo.cs b/src/CSharp/CSharp/Syntax/UsingDirectiveListInfo.cs index 2def63e6a4..8b96866dc5 100644 --- a/src/CSharp/CSharp/Syntax/UsingDirectiveListInfo.cs +++ b/src/CSharp/CSharp/Syntax/UsingDirectiveListInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/CSharp/CSharp/Syntax/XmlElementInfo.cs b/src/CSharp/CSharp/Syntax/XmlElementInfo.cs index dacc039aa8..fe56befef6 100644 --- a/src/CSharp/CSharp/Syntax/XmlElementInfo.cs +++ b/src/CSharp/CSharp/Syntax/XmlElementInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/CSharp/CSharp/SyntaxAccessibility.cs b/src/CSharp/CSharp/SyntaxAccessibility.cs index e7d11ec037..d5dc6919fc 100644 --- a/src/CSharp/CSharp/SyntaxAccessibility.cs +++ b/src/CSharp/CSharp/SyntaxAccessibility.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CSharp/CSharp/SyntaxAccessibility`1.cs b/src/CSharp/CSharp/SyntaxAccessibility`1.cs index 60d1422ede..49622825e7 100644 --- a/src/CSharp/CSharp/SyntaxAccessibility`1.cs +++ b/src/CSharp/CSharp/SyntaxAccessibility`1.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.CodeAnalysis; diff --git a/src/CSharp/CSharp/SyntaxDebug.cs b/src/CSharp/CSharp/SyntaxDebug.cs index 0930efe73d..68e6c0679a 100644 --- a/src/CSharp/CSharp/SyntaxDebug.cs +++ b/src/CSharp/CSharp/SyntaxDebug.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/CSharp/CSharp/SyntaxInfo.cs b/src/CSharp/CSharp/SyntaxInfo.cs index 5eec8bf8c7..35f3899c92 100644 --- a/src/CSharp/CSharp/SyntaxInfo.cs +++ b/src/CSharp/CSharp/SyntaxInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using Microsoft.CodeAnalysis; diff --git a/src/CSharp/CSharp/SyntaxRefactorings.cs b/src/CSharp/CSharp/SyntaxRefactorings.cs index 5fa7444026..d7e50ffdfe 100644 --- a/src/CSharp/CSharp/SyntaxRefactorings.cs +++ b/src/CSharp/CSharp/SyntaxRefactorings.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CSharp/CSharp/SyntaxRewriters/BinaryExpressionToMultiLineRewriter.cs b/src/CSharp/CSharp/SyntaxRewriters/BinaryExpressionToMultiLineRewriter.cs index 5ea478321d..ccf0760b4e 100644 --- a/src/CSharp/CSharp/SyntaxRewriters/BinaryExpressionToMultiLineRewriter.cs +++ b/src/CSharp/CSharp/SyntaxRewriters/BinaryExpressionToMultiLineRewriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/CSharp/CSharp/SyntaxRewriters/RenameRewriter.cs b/src/CSharp/CSharp/SyntaxRewriters/RenameRewriter.cs index d0419130ee..9ad138415e 100644 --- a/src/CSharp/CSharp/SyntaxRewriters/RenameRewriter.cs +++ b/src/CSharp/CSharp/SyntaxRewriters/RenameRewriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading; diff --git a/src/CSharp/CSharp/SyntaxRewriters/SkipFunctionRewriter.cs b/src/CSharp/CSharp/SyntaxRewriters/SkipFunctionRewriter.cs index 70c0b06c11..42f6c7f3a3 100644 --- a/src/CSharp/CSharp/SyntaxRewriters/SkipFunctionRewriter.cs +++ b/src/CSharp/CSharp/SyntaxRewriters/SkipFunctionRewriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/CSharp/CSharp/SyntaxRewriters/TriviaRemover.cs b/src/CSharp/CSharp/SyntaxRewriters/TriviaRemover.cs index 0f82afe448..3185ffe12b 100644 --- a/src/CSharp/CSharp/SyntaxRewriters/TriviaRemover.cs +++ b/src/CSharp/CSharp/SyntaxRewriters/TriviaRemover.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/CSharp/CSharp/SyntaxRewriters/WhitespaceRemover.cs b/src/CSharp/CSharp/SyntaxRewriters/WhitespaceRemover.cs index 581b1cf5ac..c66191f4a6 100644 --- a/src/CSharp/CSharp/SyntaxRewriters/WhitespaceRemover.cs +++ b/src/CSharp/CSharp/SyntaxRewriters/WhitespaceRemover.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/CSharp/CSharp/SyntaxRewriters/WhitespaceReplacer.cs b/src/CSharp/CSharp/SyntaxRewriters/WhitespaceReplacer.cs index 422e754206..240b9ab21d 100644 --- a/src/CSharp/CSharp/SyntaxRewriters/WhitespaceReplacer.cs +++ b/src/CSharp/CSharp/SyntaxRewriters/WhitespaceReplacer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/CSharp/CSharp/SyntaxWalkers/AssignedExpressionWalker.cs b/src/CSharp/CSharp/SyntaxWalkers/AssignedExpressionWalker.cs index 4dd12232a4..395e7c41a7 100644 --- a/src/CSharp/CSharp/SyntaxWalkers/AssignedExpressionWalker.cs +++ b/src/CSharp/CSharp/SyntaxWalkers/AssignedExpressionWalker.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/CSharp/CSharp/SyntaxWalkers/CSharpSyntaxNodeWalker.cs b/src/CSharp/CSharp/SyntaxWalkers/CSharpSyntaxNodeWalker.cs index 1e9f7cfdb1..9d89e86bca 100644 --- a/src/CSharp/CSharp/SyntaxWalkers/CSharpSyntaxNodeWalker.cs +++ b/src/CSharp/CSharp/SyntaxWalkers/CSharpSyntaxNodeWalker.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/CSharp/CSharp/SyntaxWalkers/ContainsCommentWalker.cs b/src/CSharp/CSharp/SyntaxWalkers/ContainsCommentWalker.cs index 99cc8f20c1..c62031d542 100644 --- a/src/CSharp/CSharp/SyntaxWalkers/ContainsCommentWalker.cs +++ b/src/CSharp/CSharp/SyntaxWalkers/ContainsCommentWalker.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.CodeAnalysis; diff --git a/src/CSharp/CSharp/SyntaxWalkers/ContainsLocalOrParameterReferenceWalker.cs b/src/CSharp/CSharp/SyntaxWalkers/ContainsLocalOrParameterReferenceWalker.cs index 0a7642c257..068bd815c2 100644 --- a/src/CSharp/CSharp/SyntaxWalkers/ContainsLocalOrParameterReferenceWalker.cs +++ b/src/CSharp/CSharp/SyntaxWalkers/ContainsLocalOrParameterReferenceWalker.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/CSharp/CSharp/SyntaxWalkers/ContainsYieldWalker.cs b/src/CSharp/CSharp/SyntaxWalkers/ContainsYieldWalker.cs index 0c999f7124..47f2937685 100644 --- a/src/CSharp/CSharp/SyntaxWalkers/ContainsYieldWalker.cs +++ b/src/CSharp/CSharp/SyntaxWalkers/ContainsYieldWalker.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/CSharp/CSharp/SyntaxWalkers/LocalOrParameterReferenceWalker.cs b/src/CSharp/CSharp/SyntaxWalkers/LocalOrParameterReferenceWalker.cs index 6be5108815..df36e2016b 100644 --- a/src/CSharp/CSharp/SyntaxWalkers/LocalOrParameterReferenceWalker.cs +++ b/src/CSharp/CSharp/SyntaxWalkers/LocalOrParameterReferenceWalker.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/CSharp/CSharp/SyntaxWalkers/MethodReferencedAsMethodGroupWalker.cs b/src/CSharp/CSharp/SyntaxWalkers/MethodReferencedAsMethodGroupWalker.cs index af00f02389..5c47311930 100644 --- a/src/CSharp/CSharp/SyntaxWalkers/MethodReferencedAsMethodGroupWalker.cs +++ b/src/CSharp/CSharp/SyntaxWalkers/MethodReferencedAsMethodGroupWalker.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/CSharp/CSharp/SyntaxWalkers/StatementWalker.cs b/src/CSharp/CSharp/SyntaxWalkers/StatementWalker.cs index cea4243252..07f48d4404 100644 --- a/src/CSharp/CSharp/SyntaxWalkers/StatementWalker.cs +++ b/src/CSharp/CSharp/SyntaxWalkers/StatementWalker.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/CSharp/CSharp/SyntaxWalkers/TriviaWalker.cs b/src/CSharp/CSharp/SyntaxWalkers/TriviaWalker.cs index e1950cda12..b8b8bd3940 100644 --- a/src/CSharp/CSharp/SyntaxWalkers/TriviaWalker.cs +++ b/src/CSharp/CSharp/SyntaxWalkers/TriviaWalker.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.CodeAnalysis; diff --git a/src/CSharp/DetermineParameterHelper.cs b/src/CSharp/DetermineParameterHelper.cs index 44f11e7a56..5bde01cb14 100644 --- a/src/CSharp/DetermineParameterHelper.cs +++ b/src/CSharp/DetermineParameterHelper.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Diagnostics; diff --git a/src/CSharp/DetermineParameterTypeHelper.cs b/src/CSharp/DetermineParameterTypeHelper.cs index 6cccc6467c..7f017202c5 100644 --- a/src/CSharp/DetermineParameterTypeHelper.cs +++ b/src/CSharp/DetermineParameterTypeHelper.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/CSharp/GlobalSuppressions.cs b/src/CSharp/GlobalSuppressions.cs index f2704dff97..409c13a6e4 100644 --- a/src/CSharp/GlobalSuppressions.cs +++ b/src/CSharp/GlobalSuppressions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // This file is used by Code Analysis to maintain SuppressMessage // attributes that are applied to this project. diff --git a/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/AttributeArgumentCodeFixProvider.cs b/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/AttributeArgumentCodeFixProvider.cs index 6775d812b7..7d75e2a435 100644 --- a/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/AttributeArgumentCodeFixProvider.cs +++ b/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/AttributeArgumentCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/AttributeCodeFixProvider.cs b/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/AttributeCodeFixProvider.cs index b5ce701e45..1a2167ee55 100644 --- a/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/AttributeCodeFixProvider.cs +++ b/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/AttributeCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/BaseCodeFixProvider.cs b/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/BaseCodeFixProvider.cs index 86c364e9f2..f5e893042a 100644 --- a/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/BaseCodeFixProvider.cs +++ b/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/BaseCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Roslynator.CodeFixes; diff --git a/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/BinaryExpressionCodeFixProvider.cs b/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/BinaryExpressionCodeFixProvider.cs index 75aad4e30a..c94f822261 100644 --- a/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/BinaryExpressionCodeFixProvider.cs +++ b/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/BinaryExpressionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/ConditionalAccessExpressionCodeFixProvider.cs b/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/ConditionalAccessExpressionCodeFixProvider.cs index 064940a9b2..4fb5e616ad 100644 --- a/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/ConditionalAccessExpressionCodeFixProvider.cs +++ b/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/ConditionalAccessExpressionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/ElementAccessExpressionCodeFixProvider.cs b/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/ElementAccessExpressionCodeFixProvider.cs index 3e5c36d170..db593f588d 100644 --- a/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/ElementAccessExpressionCodeFixProvider.cs +++ b/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/ElementAccessExpressionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/InvocationExpressionCodeFixProvider.cs b/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/InvocationExpressionCodeFixProvider.cs index 09d26bb277..7d14af68d9 100644 --- a/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/InvocationExpressionCodeFixProvider.cs +++ b/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/InvocationExpressionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/SimpleMemberAccessExpressionCodeFixProvider.cs b/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/SimpleMemberAccessExpressionCodeFixProvider.cs index 86ef93caf9..d8a20e092f 100644 --- a/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/SimpleMemberAccessExpressionCodeFixProvider.cs +++ b/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/SimpleMemberAccessExpressionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/UsePatternMatchingCodeFixProvider.cs b/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/UsePatternMatchingCodeFixProvider.cs index 59b2723773..2b94b74086 100644 --- a/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/UsePatternMatchingCodeFixProvider.cs +++ b/src/CodeAnalysis.Analyzers.CodeFixes/CSharp/UsePatternMatchingCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/CodeAnalysis.Analyzers/CSharp/AnalyzerOptionsAnalyzer.Generated.cs b/src/CodeAnalysis.Analyzers/CSharp/AnalyzerOptionsAnalyzer.Generated.cs index 639c6e4c6d..5480829b2f 100644 --- a/src/CodeAnalysis.Analyzers/CSharp/AnalyzerOptionsAnalyzer.Generated.cs +++ b/src/CodeAnalysis.Analyzers/CSharp/AnalyzerOptionsAnalyzer.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/CodeAnalysis.Analyzers/CSharp/BaseDiagnosticAnalyzer.cs b/src/CodeAnalysis.Analyzers/CSharp/BaseDiagnosticAnalyzer.cs index 301fbbb766..cdfe0287b2 100644 --- a/src/CodeAnalysis.Analyzers/CSharp/BaseDiagnosticAnalyzer.cs +++ b/src/CodeAnalysis.Analyzers/CSharp/BaseDiagnosticAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using System.Linq; diff --git a/src/CodeAnalysis.Analyzers/CSharp/CSharpSymbolUtility.cs b/src/CodeAnalysis.Analyzers/CSharp/CSharpSymbolUtility.cs index f0ad1b6666..79cd27d73a 100644 --- a/src/CodeAnalysis.Analyzers/CSharp/CSharpSymbolUtility.cs +++ b/src/CodeAnalysis.Analyzers/CSharp/CSharpSymbolUtility.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/CodeAnalysis.Analyzers/CSharp/DiagnosticIdentifiers.Deprecated.Generated.cs b/src/CodeAnalysis.Analyzers/CSharp/DiagnosticIdentifiers.Deprecated.Generated.cs index e85b9be18f..be461b5c98 100644 --- a/src/CodeAnalysis.Analyzers/CSharp/DiagnosticIdentifiers.Deprecated.Generated.cs +++ b/src/CodeAnalysis.Analyzers/CSharp/DiagnosticIdentifiers.Deprecated.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/CodeAnalysis.Analyzers/CSharp/DiagnosticIdentifiers.Generated.cs b/src/CodeAnalysis.Analyzers/CSharp/DiagnosticIdentifiers.Generated.cs index 833983e45b..b24b02d6ba 100644 --- a/src/CodeAnalysis.Analyzers/CSharp/DiagnosticIdentifiers.Generated.cs +++ b/src/CodeAnalysis.Analyzers/CSharp/DiagnosticIdentifiers.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/CodeAnalysis.Analyzers/CSharp/DiagnosticRules.Deprecated.Generated.cs b/src/CodeAnalysis.Analyzers/CSharp/DiagnosticRules.Deprecated.Generated.cs index a3e3416739..6ebc501d96 100644 --- a/src/CodeAnalysis.Analyzers/CSharp/DiagnosticRules.Deprecated.Generated.cs +++ b/src/CodeAnalysis.Analyzers/CSharp/DiagnosticRules.Deprecated.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/CodeAnalysis.Analyzers/CSharp/DiagnosticRules.Generated.cs b/src/CodeAnalysis.Analyzers/CSharp/DiagnosticRules.Generated.cs index db8b7869b1..28aa489fa9 100644 --- a/src/CodeAnalysis.Analyzers/CSharp/DiagnosticRules.Generated.cs +++ b/src/CodeAnalysis.Analyzers/CSharp/DiagnosticRules.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/CodeAnalysis.Analyzers/CSharp/ElementAccessExpressionAnalyzer.cs b/src/CodeAnalysis.Analyzers/CSharp/ElementAccessExpressionAnalyzer.cs index 355d5813ad..bacb3c7b5e 100644 --- a/src/CodeAnalysis.Analyzers/CSharp/ElementAccessExpressionAnalyzer.cs +++ b/src/CodeAnalysis.Analyzers/CSharp/ElementAccessExpressionAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/CodeAnalysis.Analyzers/CSharp/InvocationExpressionAnalyzer.cs b/src/CodeAnalysis.Analyzers/CSharp/InvocationExpressionAnalyzer.cs index a21c2d2328..75d8f9c9b9 100644 --- a/src/CodeAnalysis.Analyzers/CSharp/InvocationExpressionAnalyzer.cs +++ b/src/CodeAnalysis.Analyzers/CSharp/InvocationExpressionAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/CodeAnalysis.Analyzers/CSharp/NamedTypeSymbolAnalyzer.cs b/src/CodeAnalysis.Analyzers/CSharp/NamedTypeSymbolAnalyzer.cs index 6334a34b7d..15a8f8387a 100644 --- a/src/CodeAnalysis.Analyzers/CSharp/NamedTypeSymbolAnalyzer.cs +++ b/src/CodeAnalysis.Analyzers/CSharp/NamedTypeSymbolAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CodeAnalysis.Analyzers/CSharp/SimpleMemberAccessExpressionAnalyzer.cs b/src/CodeAnalysis.Analyzers/CSharp/SimpleMemberAccessExpressionAnalyzer.cs index 5ead22c74d..7851016c70 100644 --- a/src/CodeAnalysis.Analyzers/CSharp/SimpleMemberAccessExpressionAnalyzer.cs +++ b/src/CodeAnalysis.Analyzers/CSharp/SimpleMemberAccessExpressionAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/CodeAnalysis.Analyzers/CSharp/Syntax/IsKindExpressionInfo.cs b/src/CodeAnalysis.Analyzers/CSharp/Syntax/IsKindExpressionInfo.cs index ac738f188d..6dac75dbc3 100644 --- a/src/CodeAnalysis.Analyzers/CSharp/Syntax/IsKindExpressionInfo.cs +++ b/src/CodeAnalysis.Analyzers/CSharp/Syntax/IsKindExpressionInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/CodeAnalysis.Analyzers/CSharp/Syntax/IsKindExpressionStyle.cs b/src/CodeAnalysis.Analyzers/CSharp/Syntax/IsKindExpressionStyle.cs index 61ee1a6d7e..f0948540c8 100644 --- a/src/CodeAnalysis.Analyzers/CSharp/Syntax/IsKindExpressionStyle.cs +++ b/src/CodeAnalysis.Analyzers/CSharp/Syntax/IsKindExpressionStyle.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Syntax; diff --git a/src/CodeAnalysis.Analyzers/CSharp/UnnecessaryConditionalAccessAnalyzer.cs b/src/CodeAnalysis.Analyzers/CSharp/UnnecessaryConditionalAccessAnalyzer.cs index 9dc7678688..33ad9f308c 100644 --- a/src/CodeAnalysis.Analyzers/CSharp/UnnecessaryConditionalAccessAnalyzer.cs +++ b/src/CodeAnalysis.Analyzers/CSharp/UnnecessaryConditionalAccessAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/CodeAnalysis.Analyzers/CSharp/UsePatternMatchingAnalyzer.cs b/src/CodeAnalysis.Analyzers/CSharp/UsePatternMatchingAnalyzer.cs index d13eae301b..87a037869b 100644 --- a/src/CodeAnalysis.Analyzers/CSharp/UsePatternMatchingAnalyzer.cs +++ b/src/CodeAnalysis.Analyzers/CSharp/UsePatternMatchingAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CodeAnalysis.Analyzers/RoslynSymbolUtility.cs b/src/CodeAnalysis.Analyzers/RoslynSymbolUtility.cs index c78ad2bf28..d30165618a 100644 --- a/src/CodeAnalysis.Analyzers/RoslynSymbolUtility.cs +++ b/src/CodeAnalysis.Analyzers/RoslynSymbolUtility.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; diff --git a/src/CodeAnalysis.Analyzers/RoslynUtility.cs b/src/CodeAnalysis.Analyzers/RoslynUtility.cs index e58941b486..9c39181eb2 100644 --- a/src/CodeAnalysis.Analyzers/RoslynUtility.cs +++ b/src/CodeAnalysis.Analyzers/RoslynUtility.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/CodeFixes/CSharp/CodeFixDescriptors.Generated.cs b/src/CodeFixes/CSharp/CodeFixDescriptors.Generated.cs index 49457f733e..cb26aed1cc 100644 --- a/src/CodeFixes/CSharp/CodeFixDescriptors.Generated.cs +++ b/src/CodeFixes/CSharp/CodeFixDescriptors.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/CodeFixes/CSharp/CodeFixIdentifiers.Generated.cs b/src/CodeFixes/CSharp/CodeFixIdentifiers.Generated.cs index 436e6eca84..802eeb7b06 100644 --- a/src/CodeFixes/CSharp/CodeFixIdentifiers.Generated.cs +++ b/src/CodeFixes/CSharp/CodeFixIdentifiers.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/CodeFixes/CSharp/CodeFixIdentifiers.cs b/src/CodeFixes/CSharp/CodeFixIdentifiers.cs index 40ceba36ff..a672456f53 100644 --- a/src/CodeFixes/CSharp/CodeFixIdentifiers.cs +++ b/src/CodeFixes/CSharp/CodeFixIdentifiers.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp; diff --git a/src/CodeFixes/CSharp/CodeFixes/AddArgumentListToObjectCreationCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/AddArgumentListToObjectCreationCodeFixProvider.cs index b12f626184..6c9065e51e 100644 --- a/src/CodeFixes/CSharp/CodeFixes/AddArgumentListToObjectCreationCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/AddArgumentListToObjectCreationCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/AddBodyCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/AddBodyCodeFixProvider.cs index d3079ff116..70f51d9d6c 100644 --- a/src/CodeFixes/CSharp/CodeFixes/AddBodyCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/AddBodyCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/CodeFixes/CSharp/CodeFixes/AddBracesToDeclarationOrLabeledStatementCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/AddBracesToDeclarationOrLabeledStatementCodeFixProvider.cs index 3158f85146..8642c114f3 100644 --- a/src/CodeFixes/CSharp/CodeFixes/AddBracesToDeclarationOrLabeledStatementCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/AddBracesToDeclarationOrLabeledStatementCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/AddBreakStatementToSwitchSectionCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/AddBreakStatementToSwitchSectionCodeFixProvider.cs index 12f514ec35..ac6ec1c804 100644 --- a/src/CodeFixes/CSharp/CodeFixes/AddBreakStatementToSwitchSectionCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/AddBreakStatementToSwitchSectionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/AddReturnStatementCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/AddReturnStatementCodeFixProvider.cs index 83d9c30101..fdb5caddbb 100644 --- a/src/CodeFixes/CSharp/CodeFixes/AddReturnStatementCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/AddReturnStatementCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/ArgumentCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/ArgumentCodeFixProvider.cs index 8956c2fc5a..250cd709cb 100644 --- a/src/CodeFixes/CSharp/CodeFixes/ArgumentCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/ArgumentCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/AssignDefaultValueToOutParameterCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/AssignDefaultValueToOutParameterCodeFixProvider.cs index 54a044d07c..b6726219df 100644 --- a/src/CodeFixes/CSharp/CodeFixes/AssignDefaultValueToOutParameterCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/AssignDefaultValueToOutParameterCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/CodeFixes/CSharp/CodeFixes/AssignmentExpressionCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/AssignmentExpressionCodeFixProvider.cs index 008962c827..2ac72385de 100644 --- a/src/CodeFixes/CSharp/CodeFixes/AssignmentExpressionCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/AssignmentExpressionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/AttributeCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/AttributeCodeFixProvider.cs index 044ac0e081..37b90e81cf 100644 --- a/src/CodeFixes/CSharp/CodeFixes/AttributeCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/AttributeCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/BaseListCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/BaseListCodeFixProvider.cs index 35d714f814..2dccc2bfc2 100644 --- a/src/CodeFixes/CSharp/CodeFixes/BaseListCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/BaseListCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/BaseTypeCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/BaseTypeCodeFixProvider.cs index 896e2e1501..4f2c5ad84c 100644 --- a/src/CodeFixes/CSharp/CodeFixes/BaseTypeCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/BaseTypeCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/BinaryExpressionCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/BinaryExpressionCodeFixProvider.cs index b04ac2fd0d..affefcb823 100644 --- a/src/CodeFixes/CSharp/CodeFixes/BinaryExpressionCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/BinaryExpressionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/CannotConvertArgumentTypeCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/CannotConvertArgumentTypeCodeFixProvider.cs index 0780a1aeee..721d1f9332 100644 --- a/src/CodeFixes/CSharp/CodeFixes/CannotConvertArgumentTypeCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/CannotConvertArgumentTypeCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/CannotImplicitlyConvertTypeCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/CannotImplicitlyConvertTypeCodeFixProvider.cs index 6737daddd3..fc6e92164c 100644 --- a/src/CodeFixes/CSharp/CodeFixes/CannotImplicitlyConvertTypeCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/CannotImplicitlyConvertTypeCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/CaseSwitchLabelCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/CaseSwitchLabelCodeFixProvider.cs index b98306b027..75a9954c47 100644 --- a/src/CodeFixes/CSharp/CodeFixes/CaseSwitchLabelCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/CaseSwitchLabelCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/CodeFixes/CSharp/CodeFixes/ChangeOverridingMemberAccessibilityCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/ChangeOverridingMemberAccessibilityCodeFixProvider.cs index eb83f8cc85..ba22a2c2ce 100644 --- a/src/CodeFixes/CSharp/CodeFixes/ChangeOverridingMemberAccessibilityCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/ChangeOverridingMemberAccessibilityCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/ChangeTypeOfLocalVariableCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/ChangeTypeOfLocalVariableCodeFixProvider.cs index 0d9b24555e..aeb69ebda1 100644 --- a/src/CodeFixes/CSharp/CodeFixes/ChangeTypeOfLocalVariableCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/ChangeTypeOfLocalVariableCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/CodeFixRegistrationResult.cs b/src/CodeFixes/CSharp/CodeFixes/CodeFixRegistrationResult.cs index 23cbd0d67b..6db8fa6046 100644 --- a/src/CodeFixes/CSharp/CodeFixes/CodeFixRegistrationResult.cs +++ b/src/CodeFixes/CSharp/CodeFixes/CodeFixRegistrationResult.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes; diff --git a/src/CodeFixes/CSharp/CodeFixes/CodeFixRegistrator.cs b/src/CodeFixes/CSharp/CodeFixes/CodeFixRegistrator.cs index 20d3e509a8..ec236b963f 100644 --- a/src/CodeFixes/CSharp/CodeFixes/CodeFixRegistrator.cs +++ b/src/CodeFixes/CSharp/CodeFixes/CodeFixRegistrator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CodeActions; diff --git a/src/CodeFixes/CSharp/CodeFixes/ConditionalExpressionClauseCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/ConditionalExpressionClauseCodeFixProvider.cs index 44c8ef5353..86286524f5 100644 --- a/src/CodeFixes/CSharp/CodeFixes/ConditionalExpressionClauseCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/ConditionalExpressionClauseCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/ElementAccessCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/ElementAccessCodeFixProvider.cs index 4fcceeee99..0960c31b31 100644 --- a/src/CodeFixes/CSharp/CodeFixes/ElementAccessCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/ElementAccessCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/ExpressionCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/ExpressionCodeFixProvider.cs index 7d58b39afb..f14a37d920 100644 --- a/src/CodeFixes/CSharp/CodeFixes/ExpressionCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/ExpressionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/ExtractDeclarationFromUsingStatementCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/ExtractDeclarationFromUsingStatementCodeFixProvider.cs index 460f291495..e5794354b4 100644 --- a/src/CodeFixes/CSharp/CodeFixes/ExtractDeclarationFromUsingStatementCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/ExtractDeclarationFromUsingStatementCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/CodeFixes/CSharp/CodeFixes/IdentifierNameCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/IdentifierNameCodeFixProvider.cs index 86c6de78ca..ad6c3c7a89 100644 --- a/src/CodeFixes/CSharp/CodeFixes/IdentifierNameCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/IdentifierNameCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/InvocationExpressionCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/InvocationExpressionCodeFixProvider.cs index 9150565c8e..5572479085 100644 --- a/src/CodeFixes/CSharp/CodeFixes/InvocationExpressionCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/InvocationExpressionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/LabeledStatementCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/LabeledStatementCodeFixProvider.cs index 847a5b9d0c..a165a173a1 100644 --- a/src/CodeFixes/CSharp/CodeFixes/LabeledStatementCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/LabeledStatementCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/LiteralExpressionCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/LiteralExpressionCodeFixProvider.cs index 254e435ac3..ffe754f324 100644 --- a/src/CodeFixes/CSharp/CodeFixes/LiteralExpressionCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/LiteralExpressionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/MarkOperatorAsPublicAndStaticCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/MarkOperatorAsPublicAndStaticCodeFixProvider.cs index ae5d1b8546..58b798807b 100644 --- a/src/CodeFixes/CSharp/CodeFixes/MarkOperatorAsPublicAndStaticCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/MarkOperatorAsPublicAndStaticCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/MemberDeclarationCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/MemberDeclarationCodeFixProvider.cs index 7e45c5da2c..fad2ddad4c 100644 --- a/src/CodeFixes/CSharp/CodeFixes/MemberDeclarationCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/MemberDeclarationCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/MemberHidesInheritedMemberCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/MemberHidesInheritedMemberCodeFixProvider.cs index 91cf060e7d..db4b7789e4 100644 --- a/src/CodeFixes/CSharp/CodeFixes/MemberHidesInheritedMemberCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/MemberHidesInheritedMemberCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/MethodDeclarationOrLocalFunctionStatementCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/MethodDeclarationOrLocalFunctionStatementCodeFixProvider.cs index ec1778c491..ebac6589d6 100644 --- a/src/CodeFixes/CSharp/CodeFixes/MethodDeclarationOrLocalFunctionStatementCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/MethodDeclarationOrLocalFunctionStatementCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/CodeFixes/CSharp/CodeFixes/ModifiersCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/ModifiersCodeFixProvider.cs index 1a11caf3d7..bde878d192 100644 --- a/src/CodeFixes/CSharp/CodeFixes/ModifiersCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/ModifiersCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/CodeFixes/CSharp/CodeFixes/ObjectCreationExpressionCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/ObjectCreationExpressionCodeFixProvider.cs index e8417d46f2..45a9528c08 100644 --- a/src/CodeFixes/CSharp/CodeFixes/ObjectCreationExpressionCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/ObjectCreationExpressionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/CodeFixes/CSharp/CodeFixes/ObjectReferenceIsRequiredForNonStaticMemberCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/ObjectReferenceIsRequiredForNonStaticMemberCodeFixProvider.cs index 8bad08a556..489d7d610a 100644 --- a/src/CodeFixes/CSharp/CodeFixes/ObjectReferenceIsRequiredForNonStaticMemberCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/ObjectReferenceIsRequiredForNonStaticMemberCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/OperatorCannotBeAppliedToOperandsCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/OperatorCannotBeAppliedToOperandsCodeFixProvider.cs index 778da3356d..d1cc0b185b 100644 --- a/src/CodeFixes/CSharp/CodeFixes/OperatorCannotBeAppliedToOperandsCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/OperatorCannotBeAppliedToOperandsCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/OperatorDeclarationCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/OperatorDeclarationCodeFixProvider.cs index 0c2eed1159..5b8a581188 100644 --- a/src/CodeFixes/CSharp/CodeFixes/OperatorDeclarationCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/OperatorDeclarationCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/ParameterCannotBeDeclaredInThisScopeCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/ParameterCannotBeDeclaredInThisScopeCodeFixProvider.cs index dcf0a186d8..f54e0070de 100644 --- a/src/CodeFixes/CSharp/CodeFixes/ParameterCannotBeDeclaredInThisScopeCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/ParameterCannotBeDeclaredInThisScopeCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/ParameterCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/ParameterCodeFixProvider.cs index 5c310e8bca..31554c835c 100644 --- a/src/CodeFixes/CSharp/CodeFixes/ParameterCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/ParameterCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/RemoveDuplicateAttributeCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/RemoveDuplicateAttributeCodeFixProvider.cs index 912911e6ea..f8e950d8f0 100644 --- a/src/CodeFixes/CSharp/CodeFixes/RemoveDuplicateAttributeCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/RemoveDuplicateAttributeCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/RemoveDuplicateModifierCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/RemoveDuplicateModifierCodeFixProvider.cs index c2fcbfc19b..2b000f5e30 100644 --- a/src/CodeFixes/CSharp/CodeFixes/RemoveDuplicateModifierCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/RemoveDuplicateModifierCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/RemoveImplementationFromAbstractMemberCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/RemoveImplementationFromAbstractMemberCodeFixProvider.cs index 2d865d1e2b..7bc2adc535 100644 --- a/src/CodeFixes/CSharp/CodeFixes/RemoveImplementationFromAbstractMemberCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/RemoveImplementationFromAbstractMemberCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/RemoveNewModifierCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/RemoveNewModifierCodeFixProvider.cs index 53b07f49fe..139ed23d1b 100644 --- a/src/CodeFixes/CSharp/CodeFixes/RemoveNewModifierCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/RemoveNewModifierCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/RemovePropertyOrFieldInitializerCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/RemovePropertyOrFieldInitializerCodeFixProvider.cs index dd6c223fce..b84191b313 100644 --- a/src/CodeFixes/CSharp/CodeFixes/RemovePropertyOrFieldInitializerCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/RemovePropertyOrFieldInitializerCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/ReturnStatementCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/ReturnStatementCodeFixProvider.cs index 88f0fce73b..5c65f57725 100644 --- a/src/CodeFixes/CSharp/CodeFixes/ReturnStatementCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/ReturnStatementCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/ReturnTypeOfAsyncMethodMustBeVoidOrTaskOrTaskOfTCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/ReturnTypeOfAsyncMethodMustBeVoidOrTaskOrTaskOfTCodeFixProvider.cs index e14a59adce..edf639ebdd 100644 --- a/src/CodeFixes/CSharp/CodeFixes/ReturnTypeOfAsyncMethodMustBeVoidOrTaskOrTaskOfTCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/ReturnTypeOfAsyncMethodMustBeVoidOrTaskOrTaskOfTCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/SimpleNameCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/SimpleNameCodeFixProvider.cs index 4dbf6ce38b..b68125c7e0 100644 --- a/src/CodeFixes/CSharp/CodeFixes/SimpleNameCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/SimpleNameCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/StatementCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/StatementCodeFixProvider.cs index 76305631f2..243439831c 100644 --- a/src/CodeFixes/CSharp/CodeFixes/StatementCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/StatementCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/SynchronizeAccessibilityCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/SynchronizeAccessibilityCodeFixProvider.cs index 1f1c6328b8..190c539545 100644 --- a/src/CodeFixes/CSharp/CodeFixes/SynchronizeAccessibilityCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/SynchronizeAccessibilityCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/SyntaxErrorCharExpectedCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/SyntaxErrorCharExpectedCodeFixProvider.cs index 08f44b1f9d..eef8a91ca4 100644 --- a/src/CodeFixes/CSharp/CodeFixes/SyntaxErrorCharExpectedCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/SyntaxErrorCharExpectedCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/TokenCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/TokenCodeFixProvider.cs index cc7d368db0..27423f2dcc 100644 --- a/src/CodeFixes/CSharp/CodeFixes/TokenCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/TokenCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/TypeCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/TypeCodeFixProvider.cs index cab54a438e..f793706096 100644 --- a/src/CodeFixes/CSharp/CodeFixes/TypeCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/TypeCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/CodeFixes/CSharp/CodeFixes/TypeDeclarationCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/TypeDeclarationCodeFixProvider.cs index 562b7e510e..cdbc64af12 100644 --- a/src/CodeFixes/CSharp/CodeFixes/TypeDeclarationCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/TypeDeclarationCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/TypeDoesNotContainDefinitionCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/TypeDoesNotContainDefinitionCodeFixProvider.cs index 09f9d0ff89..7c867074b7 100644 --- a/src/CodeFixes/CSharp/CodeFixes/TypeDoesNotContainDefinitionCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/TypeDoesNotContainDefinitionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/CodeFixes/CSharp/CodeFixes/TypeParameterCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/TypeParameterCodeFixProvider.cs index 9b1609279a..1d9420e01e 100644 --- a/src/CodeFixes/CSharp/CodeFixes/TypeParameterCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/TypeParameterCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/TypeParameterConstraintClauseCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/TypeParameterConstraintClauseCodeFixProvider.cs index bdb717613d..da0e900dd3 100644 --- a/src/CodeFixes/CSharp/CodeFixes/TypeParameterConstraintClauseCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/TypeParameterConstraintClauseCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/TypeParameterConstraintCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/TypeParameterConstraintCodeFixProvider.cs index 1e0d4ce4d4..1edcc82175 100644 --- a/src/CodeFixes/CSharp/CodeFixes/TypeParameterConstraintCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/TypeParameterConstraintCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/UnreachableCodeCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/UnreachableCodeCodeFixProvider.cs index 3b21e5d009..862717d35a 100644 --- a/src/CodeFixes/CSharp/CodeFixes/UnreachableCodeCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/UnreachableCodeCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CodeFixes/CSharp/CodeFixes/UnsafeCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/UnsafeCodeFixProvider.cs index 1c2cc0cb97..a5e3304ed3 100644 --- a/src/CodeFixes/CSharp/CodeFixes/UnsafeCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/UnsafeCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/UseNullForgivingOperatorCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/UseNullForgivingOperatorCodeFixProvider.cs index ddbae96a80..8a8ef8edae 100644 --- a/src/CodeFixes/CSharp/CodeFixes/UseNullForgivingOperatorCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/UseNullForgivingOperatorCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CodeFixes/VariableDeclarationCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/VariableDeclarationCodeFixProvider.cs index 7ec13b63ea..810c3f9388 100644 --- a/src/CodeFixes/CSharp/CodeFixes/VariableDeclarationCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/VariableDeclarationCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/CodeFixes/CSharp/CodeFixes/YieldStatementCodeFixProvider.cs b/src/CodeFixes/CSharp/CodeFixes/YieldStatementCodeFixProvider.cs index 325cd2a5a4..59dc486250 100644 --- a/src/CodeFixes/CSharp/CodeFixes/YieldStatementCodeFixProvider.cs +++ b/src/CodeFixes/CSharp/CodeFixes/YieldStatementCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/CodeFixes/CSharp/CompilerDiagnosticRules.Generated.cs b/src/CodeFixes/CSharp/CompilerDiagnosticRules.Generated.cs index 2875b36df4..1b3dd84414 100644 --- a/src/CodeFixes/CSharp/CompilerDiagnosticRules.Generated.cs +++ b/src/CodeFixes/CSharp/CompilerDiagnosticRules.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/CodeFixes/CSharp/Refactorings/AddComparisonWithBooleanLiteralRefactoring.cs b/src/CodeFixes/CSharp/Refactorings/AddComparisonWithBooleanLiteralRefactoring.cs index 42904b7ecf..b2efdbc903 100644 --- a/src/CodeFixes/CSharp/Refactorings/AddComparisonWithBooleanLiteralRefactoring.cs +++ b/src/CodeFixes/CSharp/Refactorings/AddComparisonWithBooleanLiteralRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/CodeFixes/CSharp/Refactorings/AddDocumentationCommentRefactoring.cs b/src/CodeFixes/CSharp/Refactorings/AddDocumentationCommentRefactoring.cs index 5b6f00c2c9..b86a45530a 100644 --- a/src/CodeFixes/CSharp/Refactorings/AddDocumentationCommentRefactoring.cs +++ b/src/CodeFixes/CSharp/Refactorings/AddDocumentationCommentRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/CodeFixes/CSharp/Refactorings/ChangeMemberTypeRefactoring.cs b/src/CodeFixes/CSharp/Refactorings/ChangeMemberTypeRefactoring.cs index c7641bbdbe..7c884d1af7 100644 --- a/src/CodeFixes/CSharp/Refactorings/ChangeMemberTypeRefactoring.cs +++ b/src/CodeFixes/CSharp/Refactorings/ChangeMemberTypeRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading; diff --git a/src/CodeFixes/CSharp/Refactorings/ChangeTypeAccordingToInitializerRefactoring.cs b/src/CodeFixes/CSharp/Refactorings/ChangeTypeAccordingToInitializerRefactoring.cs index bf04aad42a..898c0002f0 100644 --- a/src/CodeFixes/CSharp/Refactorings/ChangeTypeAccordingToInitializerRefactoring.cs +++ b/src/CodeFixes/CSharp/Refactorings/ChangeTypeAccordingToInitializerRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading; diff --git a/src/CodeFixes/CSharp/Refactorings/CreateSingletonArrayRefactoring.cs b/src/CodeFixes/CSharp/Refactorings/CreateSingletonArrayRefactoring.cs index c8598ebbe4..e93ebf5501 100644 --- a/src/CodeFixes/CSharp/Refactorings/CreateSingletonArrayRefactoring.cs +++ b/src/CodeFixes/CSharp/Refactorings/CreateSingletonArrayRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/CodeFixes/CSharp/Refactorings/ReplaceStringLiteralWithCharacterLiteralRefactoring.cs b/src/CodeFixes/CSharp/Refactorings/ReplaceStringLiteralWithCharacterLiteralRefactoring.cs index bd66467ed4..e4ada31af6 100644 --- a/src/CodeFixes/CSharp/Refactorings/ReplaceStringLiteralWithCharacterLiteralRefactoring.cs +++ b/src/CodeFixes/CSharp/Refactorings/ReplaceStringLiteralWithCharacterLiteralRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/CodeFixes/CSharp/Refactorings/ReplaceYieldReturnWithForEachRefactoring.cs b/src/CodeFixes/CSharp/Refactorings/ReplaceYieldReturnWithForEachRefactoring.cs index 4372888b7b..4a33db85b6 100644 --- a/src/CodeFixes/CSharp/Refactorings/ReplaceYieldReturnWithForEachRefactoring.cs +++ b/src/CodeFixes/CSharp/Refactorings/ReplaceYieldReturnWithForEachRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/CodeFixes/CSharp/Refactorings/UseYieldReturnInsteadOfReturnRefactoring.cs b/src/CodeFixes/CSharp/Refactorings/UseYieldReturnInsteadOfReturnRefactoring.cs index 20478ff894..e92de992fb 100644 --- a/src/CodeFixes/CSharp/Refactorings/UseYieldReturnInsteadOfReturnRefactoring.cs +++ b/src/CodeFixes/CSharp/Refactorings/UseYieldReturnInsteadOfReturnRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using System.Threading; diff --git a/src/CodeFixes/CodeFixMap.cs b/src/CodeFixes/CodeFixMap.cs index 4ffd9e01a1..977c3a2437 100644 --- a/src/CodeFixes/CodeFixMap.cs +++ b/src/CodeFixes/CodeFixMap.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/CodeFixes/CodeFixOptionAttribute.cs b/src/CodeFixes/CodeFixOptionAttribute.cs index a13a56e151..b183638759 100644 --- a/src/CodeFixes/CodeFixOptionAttribute.cs +++ b/src/CodeFixes/CodeFixOptionAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/CodeFixes/CodeFixOptions.cs b/src/CodeFixes/CodeFixOptions.cs index 04ce9be176..a0cb1c60f6 100644 --- a/src/CodeFixes/CodeFixOptions.cs +++ b/src/CodeFixes/CodeFixOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator; diff --git a/src/CodeFixes/CodeFixes/CodeFixDescriptor.cs b/src/CodeFixes/CodeFixes/CodeFixDescriptor.cs index 861455ad78..c5ab1c9a7d 100644 --- a/src/CodeFixes/CodeFixes/CodeFixDescriptor.cs +++ b/src/CodeFixes/CodeFixes/CodeFixDescriptor.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Diagnostics; diff --git a/src/CodeFixes/CodeFixes/CodeFixIdentifier.cs b/src/CodeFixes/CodeFixes/CodeFixIdentifier.cs index 3bedd5ca08..0cf546934d 100644 --- a/src/CodeFixes/CodeFixes/CodeFixIdentifier.cs +++ b/src/CodeFixes/CodeFixes/CodeFixIdentifier.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/CodeFixes/CodeFixes/CompilerCodeFixOptions.cs b/src/CodeFixes/CodeFixes/CompilerCodeFixOptions.cs index 9930d61941..8a8d68cd36 100644 --- a/src/CodeFixes/CodeFixes/CompilerCodeFixOptions.cs +++ b/src/CodeFixes/CodeFixes/CompilerCodeFixOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CodeFixes/CodeFixes/CompilerDiagnosticCodeFixProvider.cs b/src/CodeFixes/CodeFixes/CompilerDiagnosticCodeFixProvider.cs index 2b712258de..0aee2b0598 100644 --- a/src/CodeFixes/CodeFixes/CompilerDiagnosticCodeFixProvider.cs +++ b/src/CodeFixes/CodeFixes/CompilerDiagnosticCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Concurrent; using Microsoft.CodeAnalysis; diff --git a/src/CodeFixes/CompilerDiagnosticFix.cs b/src/CodeFixes/CompilerDiagnosticFix.cs index f71401193b..327682aaa9 100644 --- a/src/CodeFixes/CompilerDiagnosticFix.cs +++ b/src/CodeFixes/CompilerDiagnosticFix.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator; diff --git a/src/CodeFixes/GlobalSuppressions.cs b/src/CodeFixes/GlobalSuppressions.cs index d82c3a00c1..7041318ed6 100644 --- a/src/CodeFixes/GlobalSuppressions.cs +++ b/src/CodeFixes/GlobalSuppressions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // This file is used by Code Analysis to maintain SuppressMessage // attributes that are applied to this project. diff --git a/src/CommandLine.DocumentationGenerator/DocumentationWriter.cs b/src/CommandLine.DocumentationGenerator/DocumentationWriter.cs index 84799f83a8..707e299539 100644 --- a/src/CommandLine.DocumentationGenerator/DocumentationWriter.cs +++ b/src/CommandLine.DocumentationGenerator/DocumentationWriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Text; using System.Text.RegularExpressions; diff --git a/src/CommandLine.DocumentationGenerator/MarkdownDocumentationWriter.cs b/src/CommandLine.DocumentationGenerator/MarkdownDocumentationWriter.cs index ea52811263..53a7f23c27 100644 --- a/src/CommandLine.DocumentationGenerator/MarkdownDocumentationWriter.cs +++ b/src/CommandLine.DocumentationGenerator/MarkdownDocumentationWriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/CommandLine.DocumentationGenerator/MarkdownHelpers.cs b/src/CommandLine.DocumentationGenerator/MarkdownHelpers.cs index 4a3863e9a5..fdf028d218 100644 --- a/src/CommandLine.DocumentationGenerator/MarkdownHelpers.cs +++ b/src/CommandLine.DocumentationGenerator/MarkdownHelpers.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CommandLine; diff --git a/src/CommandLine.DocumentationGenerator/Program.cs b/src/CommandLine.DocumentationGenerator/Program.cs index e9b5975a4a..618bea49c3 100644 --- a/src/CommandLine.DocumentationGenerator/Program.cs +++ b/src/CommandLine.DocumentationGenerator/Program.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CommandLine/AnalyzerAssemblyInfo.cs b/src/CommandLine/AnalyzerAssemblyInfo.cs index 8ae54c6e9c..5a9d7fd09b 100644 --- a/src/CommandLine/AnalyzerAssemblyInfo.cs +++ b/src/CommandLine/AnalyzerAssemblyInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CommandLine; diff --git a/src/CommandLine/AnalyzerAssemblyLoader.cs b/src/CommandLine/AnalyzerAssemblyLoader.cs index 11915a12ca..2277e1dfb5 100644 --- a/src/CommandLine/AnalyzerAssemblyLoader.cs +++ b/src/CommandLine/AnalyzerAssemblyLoader.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CommandLine/AssemblyFactory.cs b/src/CommandLine/AssemblyFactory.cs index fffaf69365..88d2fcfb4f 100644 --- a/src/CommandLine/AssemblyFactory.cs +++ b/src/CommandLine/AssemblyFactory.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.IO; diff --git a/src/CommandLine/AssemblyResolver.cs b/src/CommandLine/AssemblyResolver.cs index a8adef523d..e5319d5301 100644 --- a/src/CommandLine/AssemblyResolver.cs +++ b/src/CommandLine/AssemblyResolver.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/CommandLine/Colors.cs b/src/CommandLine/Colors.cs index 1a943cc840..0505462e7d 100644 --- a/src/CommandLine/Colors.cs +++ b/src/CommandLine/Colors.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CommandLine; diff --git a/src/CommandLine/CommandLineHelpers.cs b/src/CommandLine/CommandLineHelpers.cs index d74d5874bd..fab8b94cf8 100644 --- a/src/CommandLine/CommandLineHelpers.cs +++ b/src/CommandLine/CommandLineHelpers.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/CommandLine/CommandResults/AnalyzeCommandResult.cs b/src/CommandLine/CommandResults/AnalyzeCommandResult.cs index 011050ecd3..7d6aab3ec5 100644 --- a/src/CommandLine/CommandResults/AnalyzeCommandResult.cs +++ b/src/CommandLine/CommandResults/AnalyzeCommandResult.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Roslynator.Diagnostics; diff --git a/src/CommandLine/CommandResults/CommandResult.cs b/src/CommandLine/CommandResults/CommandResult.cs index d8bb97525f..c41d27875c 100644 --- a/src/CommandLine/CommandResults/CommandResult.cs +++ b/src/CommandLine/CommandResults/CommandResult.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CommandLine; diff --git a/src/CommandLine/CommandResults/CommandResults.cs b/src/CommandLine/CommandResults/CommandResults.cs index 6e38c4ca45..4c874fe63f 100644 --- a/src/CommandLine/CommandResults/CommandResults.cs +++ b/src/CommandLine/CommandResults/CommandResults.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CommandLine; diff --git a/src/CommandLine/CommandResults/FixCommandResult.cs b/src/CommandLine/CommandResults/FixCommandResult.cs index f3da1879b2..2e4352bbcd 100644 --- a/src/CommandLine/CommandResults/FixCommandResult.cs +++ b/src/CommandLine/CommandResults/FixCommandResult.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Roslynator.CodeFixes; diff --git a/src/CommandLine/CommandResults/FormatCommandResult.cs b/src/CommandLine/CommandResults/FormatCommandResult.cs index a0c38b4303..97c52e6436 100644 --- a/src/CommandLine/CommandResults/FormatCommandResult.cs +++ b/src/CommandLine/CommandResults/FormatCommandResult.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CommandLine; diff --git a/src/CommandLine/CommandResults/LinesOfCodeCommandResult.cs b/src/CommandLine/CommandResults/LinesOfCodeCommandResult.cs index faba0a14a0..19a127cfce 100644 --- a/src/CommandLine/CommandResults/LinesOfCodeCommandResult.cs +++ b/src/CommandLine/CommandResults/LinesOfCodeCommandResult.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Roslynator.CodeMetrics; diff --git a/src/CommandLine/CommandResults/RenameSymbolCommandResult.cs b/src/CommandLine/CommandResults/RenameSymbolCommandResult.cs index e4b2017b5f..bfc88c2c36 100644 --- a/src/CommandLine/CommandResults/RenameSymbolCommandResult.cs +++ b/src/CommandLine/CommandResults/RenameSymbolCommandResult.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Roslynator.Rename; diff --git a/src/CommandLine/CommandResults/SpellcheckCommandResult.cs b/src/CommandLine/CommandResults/SpellcheckCommandResult.cs index 86e1cf48e7..5295468940 100644 --- a/src/CommandLine/CommandResults/SpellcheckCommandResult.cs +++ b/src/CommandLine/CommandResults/SpellcheckCommandResult.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Roslynator.Spelling; diff --git a/src/CommandLine/CommandStatus.cs b/src/CommandLine/CommandStatus.cs index 905d8ddf5f..a8836abaf6 100644 --- a/src/CommandLine/CommandStatus.cs +++ b/src/CommandLine/CommandStatus.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CommandLine; diff --git a/src/CommandLine/Commands/AbstractLinesOfCodeCommand`1.cs b/src/CommandLine/Commands/AbstractLinesOfCodeCommand`1.cs index d159e58d9b..e375ff1126 100644 --- a/src/CommandLine/Commands/AbstractLinesOfCodeCommand`1.cs +++ b/src/CommandLine/Commands/AbstractLinesOfCodeCommand`1.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Concurrent; using System.Collections.Generic; diff --git a/src/CommandLine/Commands/AnalyzeCommand.cs b/src/CommandLine/Commands/AnalyzeCommand.cs index 6bc4ba9254..224193c768 100644 --- a/src/CommandLine/Commands/AnalyzeCommand.cs +++ b/src/CommandLine/Commands/AnalyzeCommand.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CommandLine/Commands/FindSymbolsCommand.cs b/src/CommandLine/Commands/FindSymbolsCommand.cs index 118c79177f..68960808e8 100644 --- a/src/CommandLine/Commands/FindSymbolsCommand.cs +++ b/src/CommandLine/Commands/FindSymbolsCommand.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CommandLine/Commands/FixCommand.cs b/src/CommandLine/Commands/FixCommand.cs index 4f5c9c7db4..13ef369792 100644 --- a/src/CommandLine/Commands/FixCommand.cs +++ b/src/CommandLine/Commands/FixCommand.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CommandLine/Commands/FormatCommand.cs b/src/CommandLine/Commands/FormatCommand.cs index 4f292a4807..3fa931647a 100644 --- a/src/CommandLine/Commands/FormatCommand.cs +++ b/src/CommandLine/Commands/FormatCommand.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Concurrent; diff --git a/src/CommandLine/Commands/GenerateDocCommand.cs b/src/CommandLine/Commands/GenerateDocCommand.cs index c53a8bb84b..6139a80ca5 100644 --- a/src/CommandLine/Commands/GenerateDocCommand.cs +++ b/src/CommandLine/Commands/GenerateDocCommand.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CommandLine/Commands/GenerateDocRootCommand.cs b/src/CommandLine/Commands/GenerateDocRootCommand.cs index ba139427cc..15c7c0709c 100644 --- a/src/CommandLine/Commands/GenerateDocRootCommand.cs +++ b/src/CommandLine/Commands/GenerateDocRootCommand.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CommandLine/Commands/HelpCommand.cs b/src/CommandLine/Commands/HelpCommand.cs index 1dbbcc9691..fe380dfc7b 100644 --- a/src/CommandLine/Commands/HelpCommand.cs +++ b/src/CommandLine/Commands/HelpCommand.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CommandLine/Commands/ListSymbolsCommand.cs b/src/CommandLine/Commands/ListSymbolsCommand.cs index 9d22c87f94..1650cf3e4d 100644 --- a/src/CommandLine/Commands/ListSymbolsCommand.cs +++ b/src/CommandLine/Commands/ListSymbolsCommand.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CommandLine/Commands/LogicalLinesOfCodeCommand.cs b/src/CommandLine/Commands/LogicalLinesOfCodeCommand.cs index f236175cbd..d48a180ac8 100644 --- a/src/CommandLine/Commands/LogicalLinesOfCodeCommand.cs +++ b/src/CommandLine/Commands/LogicalLinesOfCodeCommand.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CommandLine/Commands/MSBuildWorkspaceCommand.cs b/src/CommandLine/Commands/MSBuildWorkspaceCommand.cs index 2a4008bbfb..fca8f71d21 100644 --- a/src/CommandLine/Commands/MSBuildWorkspaceCommand.cs +++ b/src/CommandLine/Commands/MSBuildWorkspaceCommand.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CommandLine/Commands/MigrateCommand.cs b/src/CommandLine/Commands/MigrateCommand.cs index cf07c3c6b0..030d4f8fcc 100644 --- a/src/CommandLine/Commands/MigrateCommand.cs +++ b/src/CommandLine/Commands/MigrateCommand.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CommandLine/Commands/PhysicalLinesOfCodeCommand.cs b/src/CommandLine/Commands/PhysicalLinesOfCodeCommand.cs index 16369e75ea..533c24bbb0 100644 --- a/src/CommandLine/Commands/PhysicalLinesOfCodeCommand.cs +++ b/src/CommandLine/Commands/PhysicalLinesOfCodeCommand.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CommandLine/Commands/RenameSymbolCommand.cs b/src/CommandLine/Commands/RenameSymbolCommand.cs index 0e64630f86..c4cc0c7d7e 100644 --- a/src/CommandLine/Commands/RenameSymbolCommand.cs +++ b/src/CommandLine/Commands/RenameSymbolCommand.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CommandLine/Commands/SpellcheckCommand.cs b/src/CommandLine/Commands/SpellcheckCommand.cs index 5ef680ca0a..e4d7b20f0f 100644 --- a/src/CommandLine/Commands/SpellcheckCommand.cs +++ b/src/CommandLine/Commands/SpellcheckCommand.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CommandLine/ConsoleDialog.cs b/src/CommandLine/ConsoleDialog.cs index b9e8fcccbd..9504f38873 100644 --- a/src/CommandLine/ConsoleDialog.cs +++ b/src/CommandLine/ConsoleDialog.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/CommandLine/ConsoleDialogDefinition.cs b/src/CommandLine/ConsoleDialogDefinition.cs index 886dac40f5..d42a50368f 100644 --- a/src/CommandLine/ConsoleDialogDefinition.cs +++ b/src/CommandLine/ConsoleDialogDefinition.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/CommandLine/ConsoleHelpWriter.cs b/src/CommandLine/ConsoleHelpWriter.cs index 7d1ce7ddd4..27a4627d8f 100644 --- a/src/CommandLine/ConsoleHelpWriter.cs +++ b/src/CommandLine/ConsoleHelpWriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CommandLine/ConsoleHelpers.cs b/src/CommandLine/ConsoleHelpers.cs index 8b79456ba7..931d7c1f00 100644 --- a/src/CommandLine/ConsoleHelpers.cs +++ b/src/CommandLine/ConsoleHelpers.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CommandLine/DelegateFactory.cs b/src/CommandLine/DelegateFactory.cs index 4d143ef0f9..88ed54eca0 100644 --- a/src/CommandLine/DelegateFactory.cs +++ b/src/CommandLine/DelegateFactory.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.IO; diff --git a/src/CommandLine/DiagnosticMap.cs b/src/CommandLine/DiagnosticMap.cs index 8a735a1c34..abd1e87d3c 100644 --- a/src/CommandLine/DiagnosticMap.cs +++ b/src/CommandLine/DiagnosticMap.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/CommandLine/DocumentationHost.cs b/src/CommandLine/DocumentationHost.cs index 7aaf7d07c7..bd6fc44344 100644 --- a/src/CommandLine/DocumentationHost.cs +++ b/src/CommandLine/DocumentationHost.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CommandLine; diff --git a/src/CommandLine/EncodingHelpers.cs b/src/CommandLine/EncodingHelpers.cs index 18e89d4cd1..ffe605c644 100644 --- a/src/CommandLine/EncodingHelpers.cs +++ b/src/CommandLine/EncodingHelpers.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.IO; using System.Text; diff --git a/src/CommandLine/Encodings.cs b/src/CommandLine/Encodings.cs index e54cb288d0..ed759fd9d1 100644 --- a/src/CommandLine/Encodings.cs +++ b/src/CommandLine/Encodings.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Text; diff --git a/src/CommandLine/Extensions.cs b/src/CommandLine/Extensions.cs index 83cb73c334..f4b448f01d 100644 --- a/src/CommandLine/Extensions.cs +++ b/src/CommandLine/Extensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/CommandLine/FindSymbols/SymbolFilterRuleFactory.cs b/src/CommandLine/FindSymbols/SymbolFilterRuleFactory.cs index 3877f531ac..4328ca3963 100644 --- a/src/CommandLine/FindSymbols/SymbolFilterRuleFactory.cs +++ b/src/CommandLine/FindSymbols/SymbolFilterRuleFactory.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using Microsoft.CodeAnalysis; diff --git a/src/CommandLine/FindSymbols/SymbolFlags.cs b/src/CommandLine/FindSymbols/SymbolFlags.cs index 3d4bfe8540..dce76e9619 100644 --- a/src/CommandLine/FindSymbols/SymbolFlags.cs +++ b/src/CommandLine/FindSymbols/SymbolFlags.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/CommandLine/Html/DocumentationDisplayMode.cs b/src/CommandLine/Html/DocumentationDisplayMode.cs index 2f24a7225b..c848397e6d 100644 --- a/src/CommandLine/Html/DocumentationDisplayMode.cs +++ b/src/CommandLine/Html/DocumentationDisplayMode.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Documentation.Html; diff --git a/src/CommandLine/Html/SymbolDefinitionHtmlWriter.cs b/src/CommandLine/Html/SymbolDefinitionHtmlWriter.cs index 0e14f26050..51c93e7335 100644 --- a/src/CommandLine/Html/SymbolDefinitionHtmlWriter.cs +++ b/src/CommandLine/Html/SymbolDefinitionHtmlWriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/CommandLine/Json/SymbolDefinitionJsonWriter.cs b/src/CommandLine/Json/SymbolDefinitionJsonWriter.cs index ecc4c56b57..b382c7e5e9 100644 --- a/src/CommandLine/Json/SymbolDefinitionJsonWriter.cs +++ b/src/CommandLine/Json/SymbolDefinitionJsonWriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/CommandLine/MetadataReferenceDisplay.cs b/src/CommandLine/MetadataReferenceDisplay.cs index 3312df71fc..a64b6e6e42 100644 --- a/src/CommandLine/MetadataReferenceDisplay.cs +++ b/src/CommandLine/MetadataReferenceDisplay.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CommandLine; diff --git a/src/CommandLine/MetadataReferenceFilter.cs b/src/CommandLine/MetadataReferenceFilter.cs index eff462a160..8e3dca464c 100644 --- a/src/CommandLine/MetadataReferenceFilter.cs +++ b/src/CommandLine/MetadataReferenceFilter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/CommandLine/Migration/AnalyzersMapping.cs b/src/CommandLine/Migration/AnalyzersMapping.cs index b7092be061..fd1e5b2eb3 100644 --- a/src/CommandLine/Migration/AnalyzersMapping.cs +++ b/src/CommandLine/Migration/AnalyzersMapping.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.IO; diff --git a/src/CommandLine/OmitMemberParts.cs b/src/CommandLine/OmitMemberParts.cs index 4a4e5b16bf..afccd15d6b 100644 --- a/src/CommandLine/OmitMemberParts.cs +++ b/src/CommandLine/OmitMemberParts.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/CommandLine/OptionNames.cs b/src/CommandLine/OptionNames.cs index 0329bc7690..f5f95e6e70 100644 --- a/src/CommandLine/OptionNames.cs +++ b/src/CommandLine/OptionNames.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CommandLine; diff --git a/src/CommandLine/OptionShortNames.cs b/src/CommandLine/OptionShortNames.cs index 1ffee59130..157ef48b83 100644 --- a/src/CommandLine/OptionShortNames.cs +++ b/src/CommandLine/OptionShortNames.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CommandLine; diff --git a/src/CommandLine/Options/AbstractAnalyzeCommandLineOptions.cs b/src/CommandLine/Options/AbstractAnalyzeCommandLineOptions.cs index 5f2c0a0167..0044655e46 100644 --- a/src/CommandLine/Options/AbstractAnalyzeCommandLineOptions.cs +++ b/src/CommandLine/Options/AbstractAnalyzeCommandLineOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using CommandLine; diff --git a/src/CommandLine/Options/AbstractCommandLineOptions.cs b/src/CommandLine/Options/AbstractCommandLineOptions.cs index 7c6e1bfcf8..277ade12a9 100644 --- a/src/CommandLine/Options/AbstractCommandLineOptions.cs +++ b/src/CommandLine/Options/AbstractCommandLineOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using CommandLine; diff --git a/src/CommandLine/Options/AbstractGenerateDocCommandLineOptions.cs b/src/CommandLine/Options/AbstractGenerateDocCommandLineOptions.cs index 1205f4d547..2794a68d37 100644 --- a/src/CommandLine/Options/AbstractGenerateDocCommandLineOptions.cs +++ b/src/CommandLine/Options/AbstractGenerateDocCommandLineOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using CommandLine; diff --git a/src/CommandLine/Options/AbstractLinesOfCodeCommandLineOptions.cs b/src/CommandLine/Options/AbstractLinesOfCodeCommandLineOptions.cs index 51b565519e..65ed992274 100644 --- a/src/CommandLine/Options/AbstractLinesOfCodeCommandLineOptions.cs +++ b/src/CommandLine/Options/AbstractLinesOfCodeCommandLineOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using CommandLine; diff --git a/src/CommandLine/Options/AnalyzeCommandLineOptions.cs b/src/CommandLine/Options/AnalyzeCommandLineOptions.cs index 2684cc4451..639be3395d 100644 --- a/src/CommandLine/Options/AnalyzeCommandLineOptions.cs +++ b/src/CommandLine/Options/AnalyzeCommandLineOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using CommandLine; diff --git a/src/CommandLine/Options/BaseCommandLineOptions.cs b/src/CommandLine/Options/BaseCommandLineOptions.cs index 2e3a57f3ec..b06d16b4ff 100644 --- a/src/CommandLine/Options/BaseCommandLineOptions.cs +++ b/src/CommandLine/Options/BaseCommandLineOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using CommandLine; diff --git a/src/CommandLine/Options/FindSymbolsCommandLineOptions.cs b/src/CommandLine/Options/FindSymbolsCommandLineOptions.cs index 0c371d5935..77d54a3454 100644 --- a/src/CommandLine/Options/FindSymbolsCommandLineOptions.cs +++ b/src/CommandLine/Options/FindSymbolsCommandLineOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using CommandLine; diff --git a/src/CommandLine/Options/FixCommandLineOptions.cs b/src/CommandLine/Options/FixCommandLineOptions.cs index 1e0b4527a1..e531b1e6d0 100644 --- a/src/CommandLine/Options/FixCommandLineOptions.cs +++ b/src/CommandLine/Options/FixCommandLineOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using CommandLine; diff --git a/src/CommandLine/Options/FormatCommandLineOptions.cs b/src/CommandLine/Options/FormatCommandLineOptions.cs index 4fa2298e6b..325fd1a7d5 100644 --- a/src/CommandLine/Options/FormatCommandLineOptions.cs +++ b/src/CommandLine/Options/FormatCommandLineOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using CommandLine; diff --git a/src/CommandLine/Options/GenerateDocCommandLineOptions.cs b/src/CommandLine/Options/GenerateDocCommandLineOptions.cs index d55f5bffc9..003cdfe188 100644 --- a/src/CommandLine/Options/GenerateDocCommandLineOptions.cs +++ b/src/CommandLine/Options/GenerateDocCommandLineOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using CommandLine; diff --git a/src/CommandLine/Options/GenerateDocRootCommandLineOptions.cs b/src/CommandLine/Options/GenerateDocRootCommandLineOptions.cs index d7204216f9..706279c327 100644 --- a/src/CommandLine/Options/GenerateDocRootCommandLineOptions.cs +++ b/src/CommandLine/Options/GenerateDocRootCommandLineOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using CommandLine; diff --git a/src/CommandLine/Options/HelpCommandLineOptions.cs b/src/CommandLine/Options/HelpCommandLineOptions.cs index b0826b9e55..699c7b55bd 100644 --- a/src/CommandLine/Options/HelpCommandLineOptions.cs +++ b/src/CommandLine/Options/HelpCommandLineOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using CommandLine; diff --git a/src/CommandLine/Options/ListSymbolsCommandLineOptions.cs b/src/CommandLine/Options/ListSymbolsCommandLineOptions.cs index f3e065c22a..05db3a5ee2 100644 --- a/src/CommandLine/Options/ListSymbolsCommandLineOptions.cs +++ b/src/CommandLine/Options/ListSymbolsCommandLineOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using CommandLine; diff --git a/src/CommandLine/Options/LogicalLinesOfCodeCommandLineOptions.cs b/src/CommandLine/Options/LogicalLinesOfCodeCommandLineOptions.cs index 014fb214a6..92bf582533 100644 --- a/src/CommandLine/Options/LogicalLinesOfCodeCommandLineOptions.cs +++ b/src/CommandLine/Options/LogicalLinesOfCodeCommandLineOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using CommandLine; diff --git a/src/CommandLine/Options/MSBuildCommandLineOptions.cs b/src/CommandLine/Options/MSBuildCommandLineOptions.cs index 2fd1fafdd5..769fb7e41e 100644 --- a/src/CommandLine/Options/MSBuildCommandLineOptions.cs +++ b/src/CommandLine/Options/MSBuildCommandLineOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CommandLine/Options/MigrateCommandLineOptions.cs b/src/CommandLine/Options/MigrateCommandLineOptions.cs index 5c6d77e63b..e4a841b66a 100644 --- a/src/CommandLine/Options/MigrateCommandLineOptions.cs +++ b/src/CommandLine/Options/MigrateCommandLineOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using CommandLine; diff --git a/src/CommandLine/Options/PhysicalLinesOfCodeCommandLineOptions.cs b/src/CommandLine/Options/PhysicalLinesOfCodeCommandLineOptions.cs index d8f37d8a12..b6e15a1d7c 100644 --- a/src/CommandLine/Options/PhysicalLinesOfCodeCommandLineOptions.cs +++ b/src/CommandLine/Options/PhysicalLinesOfCodeCommandLineOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using CommandLine; diff --git a/src/CommandLine/Options/RenameSymbolCommandLineOptions.cs b/src/CommandLine/Options/RenameSymbolCommandLineOptions.cs index 6118983b1d..8b5518e6ca 100644 --- a/src/CommandLine/Options/RenameSymbolCommandLineOptions.cs +++ b/src/CommandLine/Options/RenameSymbolCommandLineOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using CommandLine; diff --git a/src/CommandLine/Options/SpellcheckCommandLineOptions.cs b/src/CommandLine/Options/SpellcheckCommandLineOptions.cs index f30b5d12ef..14a848f47c 100644 --- a/src/CommandLine/Options/SpellcheckCommandLineOptions.cs +++ b/src/CommandLine/Options/SpellcheckCommandLineOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using CommandLine; diff --git a/src/CommandLine/ParseHelpers.cs b/src/CommandLine/ParseHelpers.cs index c59f8841e5..70c8599ea5 100644 --- a/src/CommandLine/ParseHelpers.cs +++ b/src/CommandLine/ParseHelpers.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CommandLine/PathInfo.cs b/src/CommandLine/PathInfo.cs index 7cea644318..1ccaff3ec3 100644 --- a/src/CommandLine/PathInfo.cs +++ b/src/CommandLine/PathInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CommandLine; diff --git a/src/CommandLine/PathOrigin.cs b/src/CommandLine/PathOrigin.cs index 328f4475f7..b74e380563 100644 --- a/src/CommandLine/PathOrigin.cs +++ b/src/CommandLine/PathOrigin.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CommandLine; diff --git a/src/CommandLine/Program.cs b/src/CommandLine/Program.cs index a78cb5ebad..1e68ae35ac 100644 --- a/src/CommandLine/Program.cs +++ b/src/CommandLine/Program.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CommandLine/ProjectFilter.cs b/src/CommandLine/ProjectFilter.cs index 61e2020e3b..32c37b2991 100644 --- a/src/CommandLine/ProjectFilter.cs +++ b/src/CommandLine/ProjectFilter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CommandLine/ProjectName.cs b/src/CommandLine/ProjectName.cs index 6dbf0d1280..643f5554f2 100644 --- a/src/CommandLine/ProjectName.cs +++ b/src/CommandLine/ProjectName.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Diagnostics; diff --git a/src/CommandLine/ProjectOrSolutionLoadException.cs b/src/CommandLine/ProjectOrSolutionLoadException.cs index b104cae89f..e1f929048f 100644 --- a/src/CommandLine/ProjectOrSolutionLoadException.cs +++ b/src/CommandLine/ProjectOrSolutionLoadException.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/CommandLine/Rename/CliCompilationErrorResolution.cs b/src/CommandLine/Rename/CliCompilationErrorResolution.cs index 1952698961..3d04de24a9 100644 --- a/src/CommandLine/Rename/CliCompilationErrorResolution.cs +++ b/src/CommandLine/Rename/CliCompilationErrorResolution.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CommandLine.Rename; diff --git a/src/CommandLine/Rename/CliSymbolRenameState.cs b/src/CommandLine/Rename/CliSymbolRenameState.cs index e3f67425c2..95ebc5066b 100644 --- a/src/CommandLine/Rename/CliSymbolRenameState.cs +++ b/src/CommandLine/Rename/CliSymbolRenameState.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CommandLine/RuleSetUtility.cs b/src/CommandLine/RuleSetUtility.cs index b2cd5f1c3e..9fc5635709 100644 --- a/src/CommandLine/RuleSetUtility.cs +++ b/src/CommandLine/RuleSetUtility.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CommandLine/RuntimeMetadataReference.cs b/src/CommandLine/RuntimeMetadataReference.cs index 84419677fc..a49592d386 100644 --- a/src/CommandLine/RuntimeMetadataReference.cs +++ b/src/CommandLine/RuntimeMetadataReference.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CommandLine/TypeComparer.cs b/src/CommandLine/TypeComparer.cs index f06bd3b419..869ec16fed 100644 --- a/src/CommandLine/TypeComparer.cs +++ b/src/CommandLine/TypeComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/CommandLine/Versions.cs b/src/CommandLine/Versions.cs index 53947d54e2..58bf0f29b0 100644 --- a/src/CommandLine/Versions.cs +++ b/src/CommandLine/Versions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/CommandLine/VisualStudioInstanceComparer.cs b/src/CommandLine/VisualStudioInstanceComparer.cs index db9e85028d..2931a7b9d0 100644 --- a/src/CommandLine/VisualStudioInstanceComparer.cs +++ b/src/CommandLine/VisualStudioInstanceComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using Microsoft.Build.Locator; diff --git a/src/CommandLine/Xml/AnalyzerAssemblyXmlSerializer.cs b/src/CommandLine/Xml/AnalyzerAssemblyXmlSerializer.cs index f23fbd765c..95c8ab0c44 100644 --- a/src/CommandLine/Xml/AnalyzerAssemblyXmlSerializer.cs +++ b/src/CommandLine/Xml/AnalyzerAssemblyXmlSerializer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/CommandLine/Xml/DiagnosticXmlSerializer.cs b/src/CommandLine/Xml/DiagnosticXmlSerializer.cs index 6cd84ec70a..19940b2923 100644 --- a/src/CommandLine/Xml/DiagnosticXmlSerializer.cs +++ b/src/CommandLine/Xml/DiagnosticXmlSerializer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Common/AbstractAnalyzerOptionIsObsoleteAnalyzer.cs b/src/Common/AbstractAnalyzerOptionIsObsoleteAnalyzer.cs index 69b3109293..9e29131fc1 100644 --- a/src/Common/AbstractAnalyzerOptionIsObsoleteAnalyzer.cs +++ b/src/Common/AbstractAnalyzerOptionIsObsoleteAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.Diagnostics; diff --git a/src/Common/AbstractRequiredConfigOptionNotSetAnalyzer.cs b/src/Common/AbstractRequiredConfigOptionNotSetAnalyzer.cs index ff94de7372..81ff7ecd48 100644 --- a/src/Common/AbstractRequiredConfigOptionNotSetAnalyzer.cs +++ b/src/Common/AbstractRequiredConfigOptionNotSetAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.Diagnostics; diff --git a/src/Common/ArgumentNullCheckAnalysis.cs b/src/Common/ArgumentNullCheckAnalysis.cs index cc69afef83..cd98bdee33 100644 --- a/src/Common/ArgumentNullCheckAnalysis.cs +++ b/src/Common/ArgumentNullCheckAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading; diff --git a/src/Common/ArgumentNullCheckStyle.cs b/src/Common/ArgumentNullCheckStyle.cs index ed6673f1a8..cb35b3c73b 100644 --- a/src/Common/ArgumentNullCheckStyle.cs +++ b/src/Common/ArgumentNullCheckStyle.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp; diff --git a/src/Common/CSharp/Analysis/AddBracesToSwitchSectionAnalysis.cs b/src/Common/CSharp/Analysis/AddBracesToSwitchSectionAnalysis.cs index 09d6388faa..0e7e0b041f 100644 --- a/src/Common/CSharp/Analysis/AddBracesToSwitchSectionAnalysis.cs +++ b/src/Common/CSharp/Analysis/AddBracesToSwitchSectionAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/Common/CSharp/Analysis/AddExceptionToDocumentationComment/AddExceptionToDocumentationCommentAnalysis.cs b/src/Common/CSharp/Analysis/AddExceptionToDocumentationComment/AddExceptionToDocumentationCommentAnalysis.cs index ead8f50cc9..a1ab936454 100644 --- a/src/Common/CSharp/Analysis/AddExceptionToDocumentationComment/AddExceptionToDocumentationCommentAnalysis.cs +++ b/src/Common/CSharp/Analysis/AddExceptionToDocumentationComment/AddExceptionToDocumentationCommentAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using Microsoft.CodeAnalysis; diff --git a/src/Common/CSharp/Analysis/AddExceptionToDocumentationComment/AddExceptionToDocumentationCommentAnalysisResult.cs b/src/Common/CSharp/Analysis/AddExceptionToDocumentationComment/AddExceptionToDocumentationCommentAnalysisResult.cs index b11b8862cc..7b6eb08d3c 100644 --- a/src/Common/CSharp/Analysis/AddExceptionToDocumentationComment/AddExceptionToDocumentationCommentAnalysisResult.cs +++ b/src/Common/CSharp/Analysis/AddExceptionToDocumentationComment/AddExceptionToDocumentationCommentAnalysisResult.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; diff --git a/src/Common/CSharp/Analysis/AddExceptionToDocumentationComment/ThrowExpressionInfo.cs b/src/Common/CSharp/Analysis/AddExceptionToDocumentationComment/ThrowExpressionInfo.cs index 94ba5ac169..230df0f750 100644 --- a/src/Common/CSharp/Analysis/AddExceptionToDocumentationComment/ThrowExpressionInfo.cs +++ b/src/Common/CSharp/Analysis/AddExceptionToDocumentationComment/ThrowExpressionInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using Microsoft.CodeAnalysis; diff --git a/src/Common/CSharp/Analysis/AddExceptionToDocumentationComment/ThrowInfo.cs b/src/Common/CSharp/Analysis/AddExceptionToDocumentationComment/ThrowInfo.cs index 298c1e7b80..2bfccb8838 100644 --- a/src/Common/CSharp/Analysis/AddExceptionToDocumentationComment/ThrowInfo.cs +++ b/src/Common/CSharp/Analysis/AddExceptionToDocumentationComment/ThrowInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading; diff --git a/src/Common/CSharp/Analysis/AddExceptionToDocumentationComment/ThrowStatementInfo.cs b/src/Common/CSharp/Analysis/AddExceptionToDocumentationComment/ThrowStatementInfo.cs index 504595537c..af27e5b6ff 100644 --- a/src/Common/CSharp/Analysis/AddExceptionToDocumentationComment/ThrowStatementInfo.cs +++ b/src/Common/CSharp/Analysis/AddExceptionToDocumentationComment/ThrowStatementInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using Microsoft.CodeAnalysis; diff --git a/src/Common/CSharp/Analysis/AnalysisOptions.cs b/src/Common/CSharp/Analysis/AnalysisOptions.cs index a717a90a6f..1621e25d7e 100644 --- a/src/Common/CSharp/Analysis/AnalysisOptions.cs +++ b/src/Common/CSharp/Analysis/AnalysisOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Analysis; diff --git a/src/Common/CSharp/Analysis/BlockExpressionAnalysis.cs b/src/Common/CSharp/Analysis/BlockExpressionAnalysis.cs index ce7dca0940..01844a77e7 100644 --- a/src/Common/CSharp/Analysis/BlockExpressionAnalysis.cs +++ b/src/Common/CSharp/Analysis/BlockExpressionAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/Common/CSharp/Analysis/CallExtensionMethodAsInstanceMethodAnalysis.cs b/src/Common/CSharp/Analysis/CallExtensionMethodAsInstanceMethodAnalysis.cs index 0881008943..3ba4f5fd4c 100644 --- a/src/Common/CSharp/Analysis/CallExtensionMethodAsInstanceMethodAnalysis.cs +++ b/src/Common/CSharp/Analysis/CallExtensionMethodAsInstanceMethodAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using Microsoft.CodeAnalysis; diff --git a/src/Common/CSharp/Analysis/CallExtensionMethodAsInstanceMethodAnalysisResult.cs b/src/Common/CSharp/Analysis/CallExtensionMethodAsInstanceMethodAnalysisResult.cs index 5a907c9571..25b01715ec 100644 --- a/src/Common/CSharp/Analysis/CallExtensionMethodAsInstanceMethodAnalysisResult.cs +++ b/src/Common/CSharp/Analysis/CallExtensionMethodAsInstanceMethodAnalysisResult.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Common/CSharp/Analysis/ChangeAccessibilityAnalysis.cs b/src/Common/CSharp/Analysis/ChangeAccessibilityAnalysis.cs index 211217ecfa..605bc8b4d2 100644 --- a/src/Common/CSharp/Analysis/ChangeAccessibilityAnalysis.cs +++ b/src/Common/CSharp/Analysis/ChangeAccessibilityAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Common/CSharp/Analysis/ConvertCommentToDocumentationCommentAnalysis.cs b/src/Common/CSharp/Analysis/ConvertCommentToDocumentationCommentAnalysis.cs index 6c7bf945b1..8599d54e8d 100644 --- a/src/Common/CSharp/Analysis/ConvertCommentToDocumentationCommentAnalysis.cs +++ b/src/Common/CSharp/Analysis/ConvertCommentToDocumentationCommentAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.CodeAnalysis; diff --git a/src/Common/CSharp/Analysis/ConvertHasFlagCallToBitwiseOperationAnalysis.cs b/src/Common/CSharp/Analysis/ConvertHasFlagCallToBitwiseOperationAnalysis.cs index 1ed2d294fa..2a4e3efed4 100644 --- a/src/Common/CSharp/Analysis/ConvertHasFlagCallToBitwiseOperationAnalysis.cs +++ b/src/Common/CSharp/Analysis/ConvertHasFlagCallToBitwiseOperationAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading; diff --git a/src/Common/CSharp/Analysis/ConvertInterpolatedStringToStringLiteralAnalysis.cs b/src/Common/CSharp/Analysis/ConvertInterpolatedStringToStringLiteralAnalysis.cs index 2def97bc61..b6a05f353f 100644 --- a/src/Common/CSharp/Analysis/ConvertInterpolatedStringToStringLiteralAnalysis.cs +++ b/src/Common/CSharp/Analysis/ConvertInterpolatedStringToStringLiteralAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/Common/CSharp/Analysis/ConvertLambdaExpressionBodyToExpressionBodyAnalysis.cs b/src/Common/CSharp/Analysis/ConvertLambdaExpressionBodyToExpressionBodyAnalysis.cs index 4ffc60be4d..077e5884e0 100644 --- a/src/Common/CSharp/Analysis/ConvertLambdaExpressionBodyToExpressionBodyAnalysis.cs +++ b/src/Common/CSharp/Analysis/ConvertLambdaExpressionBodyToExpressionBodyAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using Microsoft.CodeAnalysis; diff --git a/src/Common/CSharp/Analysis/ConvertMethodGroupToAnonymousFunctionAnalysis.cs b/src/Common/CSharp/Analysis/ConvertMethodGroupToAnonymousFunctionAnalysis.cs index 17b33ed8af..15688075c3 100644 --- a/src/Common/CSharp/Analysis/ConvertMethodGroupToAnonymousFunctionAnalysis.cs +++ b/src/Common/CSharp/Analysis/ConvertMethodGroupToAnonymousFunctionAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using Microsoft.CodeAnalysis; diff --git a/src/Common/CSharp/Analysis/ExpandExpressionBodyAnalysis.cs b/src/Common/CSharp/Analysis/ExpandExpressionBodyAnalysis.cs index 35510dbe2f..876c63f41c 100644 --- a/src/Common/CSharp/Analysis/ExpandExpressionBodyAnalysis.cs +++ b/src/Common/CSharp/Analysis/ExpandExpressionBodyAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/Common/CSharp/Analysis/GenerateBaseConstructorsAnalysis.cs b/src/Common/CSharp/Analysis/GenerateBaseConstructorsAnalysis.cs index 032baa8505..840379a160 100644 --- a/src/Common/CSharp/Analysis/GenerateBaseConstructorsAnalysis.cs +++ b/src/Common/CSharp/Analysis/GenerateBaseConstructorsAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Common/CSharp/Analysis/If/AssignmentAndIfToAssignmentWithConditionalExpressionAnalysis.cs b/src/Common/CSharp/Analysis/If/AssignmentAndIfToAssignmentWithConditionalExpressionAnalysis.cs index f47d6377d2..bfa1aebbdf 100644 --- a/src/Common/CSharp/Analysis/If/AssignmentAndIfToAssignmentWithConditionalExpressionAnalysis.cs +++ b/src/Common/CSharp/Analysis/If/AssignmentAndIfToAssignmentWithConditionalExpressionAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Common/CSharp/Analysis/If/IfAnalysis.cs b/src/Common/CSharp/Analysis/If/IfAnalysis.cs index b7af98017a..476be885cf 100644 --- a/src/Common/CSharp/Analysis/If/IfAnalysis.cs +++ b/src/Common/CSharp/Analysis/If/IfAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Common/CSharp/Analysis/If/IfAnalysisKind.cs b/src/Common/CSharp/Analysis/If/IfAnalysisKind.cs index 942a65ad27..c4e965c202 100644 --- a/src/Common/CSharp/Analysis/If/IfAnalysisKind.cs +++ b/src/Common/CSharp/Analysis/If/IfAnalysisKind.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Analysis; diff --git a/src/Common/CSharp/Analysis/If/IfAnalysisOptions.cs b/src/Common/CSharp/Analysis/If/IfAnalysisOptions.cs index 1da39158d7..90ed87d289 100644 --- a/src/Common/CSharp/Analysis/If/IfAnalysisOptions.cs +++ b/src/Common/CSharp/Analysis/If/IfAnalysisOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Analysis.If; diff --git a/src/Common/CSharp/Analysis/If/IfElseToAssignmentWithCoalesceExpressionAnalysis.cs b/src/Common/CSharp/Analysis/If/IfElseToAssignmentWithCoalesceExpressionAnalysis.cs index 1d5d023886..e5d111961d 100644 --- a/src/Common/CSharp/Analysis/If/IfElseToAssignmentWithCoalesceExpressionAnalysis.cs +++ b/src/Common/CSharp/Analysis/If/IfElseToAssignmentWithCoalesceExpressionAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Common/CSharp/Analysis/If/IfElseToAssignmentWithConditionAnalysis.cs b/src/Common/CSharp/Analysis/If/IfElseToAssignmentWithConditionAnalysis.cs index cad7810999..1157b4fd62 100644 --- a/src/Common/CSharp/Analysis/If/IfElseToAssignmentWithConditionAnalysis.cs +++ b/src/Common/CSharp/Analysis/If/IfElseToAssignmentWithConditionAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Common/CSharp/Analysis/If/IfElseToAssignmentWithConditionalExpressionAnalysis.cs b/src/Common/CSharp/Analysis/If/IfElseToAssignmentWithConditionalExpressionAnalysis.cs index a89a6cf44c..61922b43b2 100644 --- a/src/Common/CSharp/Analysis/If/IfElseToAssignmentWithConditionalExpressionAnalysis.cs +++ b/src/Common/CSharp/Analysis/If/IfElseToAssignmentWithConditionalExpressionAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Common/CSharp/Analysis/If/IfElseToAssignmentWithExpressionAnalysis.cs b/src/Common/CSharp/Analysis/If/IfElseToAssignmentWithExpressionAnalysis.cs index 9827adce81..726de092cc 100644 --- a/src/Common/CSharp/Analysis/If/IfElseToAssignmentWithExpressionAnalysis.cs +++ b/src/Common/CSharp/Analysis/If/IfElseToAssignmentWithExpressionAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Common/CSharp/Analysis/If/IfElseToReturnWithBooleanExpressionAnalysis.cs b/src/Common/CSharp/Analysis/If/IfElseToReturnWithBooleanExpressionAnalysis.cs index b809e8f3e1..aaa660b194 100644 --- a/src/Common/CSharp/Analysis/If/IfElseToReturnWithBooleanExpressionAnalysis.cs +++ b/src/Common/CSharp/Analysis/If/IfElseToReturnWithBooleanExpressionAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Common/CSharp/Analysis/If/IfElseToReturnWithConditionalExpressionAnalysis.cs b/src/Common/CSharp/Analysis/If/IfElseToReturnWithConditionalExpressionAnalysis.cs index 09f3e959da..540e7df631 100644 --- a/src/Common/CSharp/Analysis/If/IfElseToReturnWithConditionalExpressionAnalysis.cs +++ b/src/Common/CSharp/Analysis/If/IfElseToReturnWithConditionalExpressionAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Common/CSharp/Analysis/If/IfElseToYieldReturnWithBooleanExpressionAnalysis.cs b/src/Common/CSharp/Analysis/If/IfElseToYieldReturnWithBooleanExpressionAnalysis.cs index 117fb65754..7b95143454 100644 --- a/src/Common/CSharp/Analysis/If/IfElseToYieldReturnWithBooleanExpressionAnalysis.cs +++ b/src/Common/CSharp/Analysis/If/IfElseToYieldReturnWithBooleanExpressionAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Common/CSharp/Analysis/If/IfElseToYieldReturnWithConditionalExpressionAnalysis.cs b/src/Common/CSharp/Analysis/If/IfElseToYieldReturnWithConditionalExpressionAnalysis.cs index 079e42ab75..2da60403eb 100644 --- a/src/Common/CSharp/Analysis/If/IfElseToYieldReturnWithConditionalExpressionAnalysis.cs +++ b/src/Common/CSharp/Analysis/If/IfElseToYieldReturnWithConditionalExpressionAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Common/CSharp/Analysis/If/IfReturnToReturnWithBooleanExpressionAnalysis.cs b/src/Common/CSharp/Analysis/If/IfReturnToReturnWithBooleanExpressionAnalysis.cs index eeaa6a7be7..95174fa0da 100644 --- a/src/Common/CSharp/Analysis/If/IfReturnToReturnWithBooleanExpressionAnalysis.cs +++ b/src/Common/CSharp/Analysis/If/IfReturnToReturnWithBooleanExpressionAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Common/CSharp/Analysis/If/IfReturnToReturnWithConditionalExpressionAnalysis.cs b/src/Common/CSharp/Analysis/If/IfReturnToReturnWithConditionalExpressionAnalysis.cs index a574f26cc2..04f0681b64 100644 --- a/src/Common/CSharp/Analysis/If/IfReturnToReturnWithConditionalExpressionAnalysis.cs +++ b/src/Common/CSharp/Analysis/If/IfReturnToReturnWithConditionalExpressionAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Common/CSharp/Analysis/If/IfToReturnWithBooleanExpressionAnalysis.cs b/src/Common/CSharp/Analysis/If/IfToReturnWithBooleanExpressionAnalysis.cs index 3ef524a121..51460ed028 100644 --- a/src/Common/CSharp/Analysis/If/IfToReturnWithBooleanExpressionAnalysis.cs +++ b/src/Common/CSharp/Analysis/If/IfToReturnWithBooleanExpressionAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Common/CSharp/Analysis/If/IfToReturnWithCoalesceExpressionAnalysis.cs b/src/Common/CSharp/Analysis/If/IfToReturnWithCoalesceExpressionAnalysis.cs index fad3047fa5..060e44dce8 100644 --- a/src/Common/CSharp/Analysis/If/IfToReturnWithCoalesceExpressionAnalysis.cs +++ b/src/Common/CSharp/Analysis/If/IfToReturnWithCoalesceExpressionAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Common/CSharp/Analysis/If/IfToReturnWithConditionalExpressionAnalysis.cs b/src/Common/CSharp/Analysis/If/IfToReturnWithConditionalExpressionAnalysis.cs index e7046d9f28..76ec4c32ca 100644 --- a/src/Common/CSharp/Analysis/If/IfToReturnWithConditionalExpressionAnalysis.cs +++ b/src/Common/CSharp/Analysis/If/IfToReturnWithConditionalExpressionAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Common/CSharp/Analysis/If/IfToReturnWithExpressionAnalysis.cs b/src/Common/CSharp/Analysis/If/IfToReturnWithExpressionAnalysis.cs index c7c681ac22..b8789c4bd7 100644 --- a/src/Common/CSharp/Analysis/If/IfToReturnWithExpressionAnalysis.cs +++ b/src/Common/CSharp/Analysis/If/IfToReturnWithExpressionAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Common/CSharp/Analysis/If/LocalDeclarationAndIfElseToAssignmentWithConditionalExpressionAnalysis.cs b/src/Common/CSharp/Analysis/If/LocalDeclarationAndIfElseToAssignmentWithConditionalExpressionAnalysis.cs index 7f7177c82a..4480c4d0c4 100644 --- a/src/Common/CSharp/Analysis/If/LocalDeclarationAndIfElseToAssignmentWithConditionalExpressionAnalysis.cs +++ b/src/Common/CSharp/Analysis/If/LocalDeclarationAndIfElseToAssignmentWithConditionalExpressionAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Common/CSharp/Analysis/If/ToAssignmentWithConditionalExpressionAnalysis.cs b/src/Common/CSharp/Analysis/If/ToAssignmentWithConditionalExpressionAnalysis.cs index 72ec7356dc..a8acb647d1 100644 --- a/src/Common/CSharp/Analysis/If/ToAssignmentWithConditionalExpressionAnalysis.cs +++ b/src/Common/CSharp/Analysis/If/ToAssignmentWithConditionalExpressionAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Common/CSharp/Analysis/If/ToAssignmentWithConditionalExpressionAnalysis`1.cs b/src/Common/CSharp/Analysis/If/ToAssignmentWithConditionalExpressionAnalysis`1.cs index a5add36c4f..ea47c75ef9 100644 --- a/src/Common/CSharp/Analysis/If/ToAssignmentWithConditionalExpressionAnalysis`1.cs +++ b/src/Common/CSharp/Analysis/If/ToAssignmentWithConditionalExpressionAnalysis`1.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Common/CSharp/Analysis/ReduceIfNesting/IfLocalVariableAnalysis.cs b/src/Common/CSharp/Analysis/ReduceIfNesting/IfLocalVariableAnalysis.cs index 0563f2a6ca..d395f62d8f 100644 --- a/src/Common/CSharp/Analysis/ReduceIfNesting/IfLocalVariableAnalysis.cs +++ b/src/Common/CSharp/Analysis/ReduceIfNesting/IfLocalVariableAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Common/CSharp/Analysis/ReduceIfNesting/ReduceIfNestingAnalysis.cs b/src/Common/CSharp/Analysis/ReduceIfNesting/ReduceIfNestingAnalysis.cs index 7600486abb..4025ba9c46 100644 --- a/src/Common/CSharp/Analysis/ReduceIfNesting/ReduceIfNestingAnalysis.cs +++ b/src/Common/CSharp/Analysis/ReduceIfNesting/ReduceIfNestingAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Diagnostics; diff --git a/src/Common/CSharp/Analysis/ReduceIfNesting/ReduceIfNestingAnalysisResult.cs b/src/Common/CSharp/Analysis/ReduceIfNesting/ReduceIfNestingAnalysisResult.cs index 7aea05c25e..2d7b3cf2c3 100644 --- a/src/Common/CSharp/Analysis/ReduceIfNesting/ReduceIfNestingAnalysisResult.cs +++ b/src/Common/CSharp/Analysis/ReduceIfNesting/ReduceIfNestingAnalysisResult.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using Microsoft.CodeAnalysis; diff --git a/src/Common/CSharp/Analysis/ReduceIfNesting/ReduceIfNestingOptions.cs b/src/Common/CSharp/Analysis/ReduceIfNesting/ReduceIfNestingOptions.cs index e2a4204408..9c0209dde1 100644 --- a/src/Common/CSharp/Analysis/ReduceIfNesting/ReduceIfNestingOptions.cs +++ b/src/Common/CSharp/Analysis/ReduceIfNesting/ReduceIfNestingOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Common/CSharp/Analysis/ReduceIfNesting/ReduceIfNestingOptionsExtensions.cs b/src/Common/CSharp/Analysis/ReduceIfNesting/ReduceIfNestingOptionsExtensions.cs index 458425f3ae..590b97a3c9 100644 --- a/src/Common/CSharp/Analysis/ReduceIfNesting/ReduceIfNestingOptionsExtensions.cs +++ b/src/Common/CSharp/Analysis/ReduceIfNesting/ReduceIfNestingOptionsExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Analysis.ReduceIfNesting; diff --git a/src/Common/CSharp/Analysis/RemoveAsyncAwaitAnalysis.cs b/src/Common/CSharp/Analysis/RemoveAsyncAwaitAnalysis.cs index e9a63019c5..49300e7312 100644 --- a/src/Common/CSharp/Analysis/RemoveAsyncAwaitAnalysis.cs +++ b/src/Common/CSharp/Analysis/RemoveAsyncAwaitAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Common/CSharp/Analysis/RemoveRedundantStatement/RemoveRedundantContinueStatementAnalysis.cs b/src/Common/CSharp/Analysis/RemoveRedundantStatement/RemoveRedundantContinueStatementAnalysis.cs index d356f3f09d..c6184f7037 100644 --- a/src/Common/CSharp/Analysis/RemoveRedundantStatement/RemoveRedundantContinueStatementAnalysis.cs +++ b/src/Common/CSharp/Analysis/RemoveRedundantStatement/RemoveRedundantContinueStatementAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Common/CSharp/Analysis/RemoveRedundantStatement/RemoveRedundantReturnStatementAnalysis.cs b/src/Common/CSharp/Analysis/RemoveRedundantStatement/RemoveRedundantReturnStatementAnalysis.cs index 2096d0d365..026ab5b91a 100644 --- a/src/Common/CSharp/Analysis/RemoveRedundantStatement/RemoveRedundantReturnStatementAnalysis.cs +++ b/src/Common/CSharp/Analysis/RemoveRedundantStatement/RemoveRedundantReturnStatementAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/Common/CSharp/Analysis/RemoveRedundantStatement/RemoveRedundantStatementAnalysis.cs b/src/Common/CSharp/Analysis/RemoveRedundantStatement/RemoveRedundantStatementAnalysis.cs index b778a2614c..cb72559fd8 100644 --- a/src/Common/CSharp/Analysis/RemoveRedundantStatement/RemoveRedundantStatementAnalysis.cs +++ b/src/Common/CSharp/Analysis/RemoveRedundantStatement/RemoveRedundantStatementAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Common/CSharp/Analysis/RemoveRedundantStatement/RemoveRedundantStatementAnalysis`1.cs b/src/Common/CSharp/Analysis/RemoveRedundantStatement/RemoveRedundantStatementAnalysis`1.cs index 9667b68ab3..3ae60abc20 100644 --- a/src/Common/CSharp/Analysis/RemoveRedundantStatement/RemoveRedundantStatementAnalysis`1.cs +++ b/src/Common/CSharp/Analysis/RemoveRedundantStatement/RemoveRedundantStatementAnalysis`1.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/Common/CSharp/Analysis/RemoveRedundantStatement/RemoveRedundantYieldBreakStatementAnalysis.cs b/src/Common/CSharp/Analysis/RemoveRedundantStatement/RemoveRedundantYieldBreakStatementAnalysis.cs index 3c5460babe..908f1b0bb2 100644 --- a/src/Common/CSharp/Analysis/RemoveRedundantStatement/RemoveRedundantYieldBreakStatementAnalysis.cs +++ b/src/Common/CSharp/Analysis/RemoveRedundantStatement/RemoveRedundantYieldBreakStatementAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/Common/CSharp/Analysis/ReplaceAsWithCastAnalysis.cs b/src/Common/CSharp/Analysis/ReplaceAsWithCastAnalysis.cs index a591d9760a..1a25cd30d3 100644 --- a/src/Common/CSharp/Analysis/ReplaceAsWithCastAnalysis.cs +++ b/src/Common/CSharp/Analysis/ReplaceAsWithCastAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using Microsoft.CodeAnalysis; diff --git a/src/Common/CSharp/Analysis/SplitVariableDeclarationAnalysis.cs b/src/Common/CSharp/Analysis/SplitVariableDeclarationAnalysis.cs index 83406b298e..3074fef8b9 100644 --- a/src/Common/CSharp/Analysis/SplitVariableDeclarationAnalysis.cs +++ b/src/Common/CSharp/Analysis/SplitVariableDeclarationAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Common/CSharp/Analysis/UseConstantInsteadOfFieldAnalysis.cs b/src/Common/CSharp/Analysis/UseConstantInsteadOfFieldAnalysis.cs index 1cc84e749a..63368508f0 100644 --- a/src/Common/CSharp/Analysis/UseConstantInsteadOfFieldAnalysis.cs +++ b/src/Common/CSharp/Analysis/UseConstantInsteadOfFieldAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/Common/CSharp/Analysis/UseElementAccessAnalysis.cs b/src/Common/CSharp/Analysis/UseElementAccessAnalysis.cs index 48189718c4..fc64b2ee70 100644 --- a/src/Common/CSharp/Analysis/UseElementAccessAnalysis.cs +++ b/src/Common/CSharp/Analysis/UseElementAccessAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using Microsoft.CodeAnalysis; diff --git a/src/Common/CSharp/Analysis/UseLambdaInsteadOfAnonymousMethodAnalysis.cs b/src/Common/CSharp/Analysis/UseLambdaInsteadOfAnonymousMethodAnalysis.cs index b9d6ed7773..b1aa4978b3 100644 --- a/src/Common/CSharp/Analysis/UseLambdaInsteadOfAnonymousMethodAnalysis.cs +++ b/src/Common/CSharp/Analysis/UseLambdaInsteadOfAnonymousMethodAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Common/CSharp/Analysis/UseMethodChaining/MethodChainingWithAssignmentAnalysis.cs b/src/Common/CSharp/Analysis/UseMethodChaining/MethodChainingWithAssignmentAnalysis.cs index d8de3f45ee..3880c733e0 100644 --- a/src/Common/CSharp/Analysis/UseMethodChaining/MethodChainingWithAssignmentAnalysis.cs +++ b/src/Common/CSharp/Analysis/UseMethodChaining/MethodChainingWithAssignmentAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using Microsoft.CodeAnalysis; diff --git a/src/Common/CSharp/Analysis/UseMethodChaining/MethodChainingWithoutAssignmentAnalysis.cs b/src/Common/CSharp/Analysis/UseMethodChaining/MethodChainingWithoutAssignmentAnalysis.cs index 763464ca59..cbb5010833 100644 --- a/src/Common/CSharp/Analysis/UseMethodChaining/MethodChainingWithoutAssignmentAnalysis.cs +++ b/src/Common/CSharp/Analysis/UseMethodChaining/MethodChainingWithoutAssignmentAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using Microsoft.CodeAnalysis; diff --git a/src/Common/CSharp/Analysis/UseMethodChaining/UseMethodChainingAnalysis.cs b/src/Common/CSharp/Analysis/UseMethodChaining/UseMethodChainingAnalysis.cs index 70234a4ecb..679093cc31 100644 --- a/src/Common/CSharp/Analysis/UseMethodChaining/UseMethodChainingAnalysis.cs +++ b/src/Common/CSharp/Analysis/UseMethodChaining/UseMethodChainingAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using Microsoft.CodeAnalysis; diff --git a/src/Common/CSharp/CodeStyle/AccessibilityModifierStyle.cs b/src/Common/CSharp/CodeStyle/AccessibilityModifierStyle.cs index e5823e47fe..eaa118eac8 100644 --- a/src/Common/CSharp/CodeStyle/AccessibilityModifierStyle.cs +++ b/src/Common/CSharp/CodeStyle/AccessibilityModifierStyle.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeStyle; diff --git a/src/Common/CSharp/CodeStyle/AccessorBracesStyle.cs b/src/Common/CSharp/CodeStyle/AccessorBracesStyle.cs index 7e8997b93e..b0d42055b6 100644 --- a/src/Common/CSharp/CodeStyle/AccessorBracesStyle.cs +++ b/src/Common/CSharp/CodeStyle/AccessorBracesStyle.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeStyle; diff --git a/src/Common/CSharp/CodeStyle/ArrayCreationTypeStyle.cs b/src/Common/CSharp/CodeStyle/ArrayCreationTypeStyle.cs index 4b76268f2e..4a40de779e 100644 --- a/src/Common/CSharp/CodeStyle/ArrayCreationTypeStyle.cs +++ b/src/Common/CSharp/CodeStyle/ArrayCreationTypeStyle.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeStyle; diff --git a/src/Common/CSharp/CodeStyle/BlankLineStyle.cs b/src/Common/CSharp/CodeStyle/BlankLineStyle.cs index 4e66fd4385..46e73bf674 100644 --- a/src/Common/CSharp/CodeStyle/BlankLineStyle.cs +++ b/src/Common/CSharp/CodeStyle/BlankLineStyle.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeStyle; diff --git a/src/Common/CSharp/CodeStyle/BlockBracesStyle.cs b/src/Common/CSharp/CodeStyle/BlockBracesStyle.cs index 384a597937..74464bcfc6 100644 --- a/src/Common/CSharp/CodeStyle/BlockBracesStyle.cs +++ b/src/Common/CSharp/CodeStyle/BlockBracesStyle.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeStyle; diff --git a/src/Common/CSharp/CodeStyle/BodyStyle.cs b/src/Common/CSharp/CodeStyle/BodyStyle.cs index 86ae197cce..41e66d61b3 100644 --- a/src/Common/CSharp/CodeStyle/BodyStyle.cs +++ b/src/Common/CSharp/CodeStyle/BodyStyle.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.CodeAnalysis.Diagnostics; diff --git a/src/Common/CSharp/CodeStyle/ConditionalExpressionParenthesesStyle.cs b/src/Common/CSharp/CodeStyle/ConditionalExpressionParenthesesStyle.cs index 6fbba672ae..4ef316cdd3 100644 --- a/src/Common/CSharp/CodeStyle/ConditionalExpressionParenthesesStyle.cs +++ b/src/Common/CSharp/CodeStyle/ConditionalExpressionParenthesesStyle.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeStyle; diff --git a/src/Common/CSharp/CodeStyle/ConfigureAwaitStyle.cs b/src/Common/CSharp/CodeStyle/ConfigureAwaitStyle.cs index 2c9f8d3b74..9ef5060947 100644 --- a/src/Common/CSharp/CodeStyle/ConfigureAwaitStyle.cs +++ b/src/Common/CSharp/CodeStyle/ConfigureAwaitStyle.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeStyle; diff --git a/src/Common/CSharp/CodeStyle/DocCommentSummaryStyle.cs b/src/Common/CSharp/CodeStyle/DocCommentSummaryStyle.cs index ba3818f813..834edfdeea 100644 --- a/src/Common/CSharp/CodeStyle/DocCommentSummaryStyle.cs +++ b/src/Common/CSharp/CodeStyle/DocCommentSummaryStyle.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeStyle; diff --git a/src/Common/CSharp/CodeStyle/EmptyStringStyle.cs b/src/Common/CSharp/CodeStyle/EmptyStringStyle.cs index 76e720c50b..217c4ac191 100644 --- a/src/Common/CSharp/CodeStyle/EmptyStringStyle.cs +++ b/src/Common/CSharp/CodeStyle/EmptyStringStyle.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeStyle; diff --git a/src/Common/CSharp/CodeStyle/EnumFlagOperationStyle.cs b/src/Common/CSharp/CodeStyle/EnumFlagOperationStyle.cs index 49f0554224..2a928521ee 100644 --- a/src/Common/CSharp/CodeStyle/EnumFlagOperationStyle.cs +++ b/src/Common/CSharp/CodeStyle/EnumFlagOperationStyle.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeStyle; diff --git a/src/Common/CSharp/CodeStyle/EnumFlagValueStyle.cs b/src/Common/CSharp/CodeStyle/EnumFlagValueStyle.cs index 89262f212d..85b381859a 100644 --- a/src/Common/CSharp/CodeStyle/EnumFlagValueStyle.cs +++ b/src/Common/CSharp/CodeStyle/EnumFlagValueStyle.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeStyle; diff --git a/src/Common/CSharp/CodeStyle/InfiniteLoopStyle.cs b/src/Common/CSharp/CodeStyle/InfiniteLoopStyle.cs index f86852ba8b..879ffaa4f3 100644 --- a/src/Common/CSharp/CodeStyle/InfiniteLoopStyle.cs +++ b/src/Common/CSharp/CodeStyle/InfiniteLoopStyle.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeStyle; diff --git a/src/Common/CSharp/CodeStyle/NewLinePosition.cs b/src/Common/CSharp/CodeStyle/NewLinePosition.cs index 9bdb4c7bec..d30d16effa 100644 --- a/src/Common/CSharp/CodeStyle/NewLinePosition.cs +++ b/src/Common/CSharp/CodeStyle/NewLinePosition.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeStyle; diff --git a/src/Common/CSharp/CodeStyle/NewLineStyle.cs b/src/Common/CSharp/CodeStyle/NewLineStyle.cs index 597a430c50..3a1de03cec 100644 --- a/src/Common/CSharp/CodeStyle/NewLineStyle.cs +++ b/src/Common/CSharp/CodeStyle/NewLineStyle.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeStyle; diff --git a/src/Common/CSharp/CodeStyle/NullCheckStyle.cs b/src/Common/CSharp/CodeStyle/NullCheckStyle.cs index 5233095752..b3ccdc6343 100644 --- a/src/Common/CSharp/CodeStyle/NullCheckStyle.cs +++ b/src/Common/CSharp/CodeStyle/NullCheckStyle.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeStyle; diff --git a/src/Common/CSharp/CodeStyle/ObjectCreationParenthesesStyle.cs b/src/Common/CSharp/CodeStyle/ObjectCreationParenthesesStyle.cs index a3460329ba..a78acc4c40 100644 --- a/src/Common/CSharp/CodeStyle/ObjectCreationParenthesesStyle.cs +++ b/src/Common/CSharp/CodeStyle/ObjectCreationParenthesesStyle.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeStyle; diff --git a/src/Common/CSharp/CodeStyle/ObjectCreationTypeStyle.cs b/src/Common/CSharp/CodeStyle/ObjectCreationTypeStyle.cs index d940cb6e21..ce08085374 100644 --- a/src/Common/CSharp/CodeStyle/ObjectCreationTypeStyle.cs +++ b/src/Common/CSharp/CodeStyle/ObjectCreationTypeStyle.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeStyle; diff --git a/src/Common/CSharp/CodeStyle/TrailingCommaStyle.cs b/src/Common/CSharp/CodeStyle/TrailingCommaStyle.cs index 21266ab355..ab0ee06e0a 100644 --- a/src/Common/CSharp/CodeStyle/TrailingCommaStyle.cs +++ b/src/Common/CSharp/CodeStyle/TrailingCommaStyle.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeStyle; diff --git a/src/Common/CSharp/CodeStyle/UsingDirectiveBlankLineStyle.cs b/src/Common/CSharp/CodeStyle/UsingDirectiveBlankLineStyle.cs index 2347da96de..aca50564c0 100644 --- a/src/Common/CSharp/CodeStyle/UsingDirectiveBlankLineStyle.cs +++ b/src/Common/CSharp/CodeStyle/UsingDirectiveBlankLineStyle.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeStyle; diff --git a/src/Common/CSharp/Extensions/CodeStyleExtensions.cs b/src/Common/CSharp/Extensions/CodeStyleExtensions.cs index 78b3e5719e..3e7f82fbac 100644 --- a/src/Common/CSharp/Extensions/CodeStyleExtensions.cs +++ b/src/Common/CSharp/Extensions/CodeStyleExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Globalization; diff --git a/src/Common/CSharp/IndentationAnalysis.cs b/src/Common/CSharp/IndentationAnalysis.cs index 74b8bdb931..00fc62ae70 100644 --- a/src/Common/CSharp/IndentationAnalysis.cs +++ b/src/Common/CSharp/IndentationAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using System.Threading; diff --git a/src/Common/CSharp/SyntaxTriviaAnalysis.cs b/src/Common/CSharp/SyntaxTriviaAnalysis.cs index 2c8f052462..ea26fef71c 100644 --- a/src/Common/CSharp/SyntaxTriviaAnalysis.cs +++ b/src/Common/CSharp/SyntaxTriviaAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Common/CSharp/SyntaxWalkers/AwaitExpressionWalker.cs b/src/Common/CSharp/SyntaxWalkers/AwaitExpressionWalker.cs index 1ce4a1cefc..89ec5bc463 100644 --- a/src/Common/CSharp/SyntaxWalkers/AwaitExpressionWalker.cs +++ b/src/Common/CSharp/SyntaxWalkers/AwaitExpressionWalker.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Common/CommonDiagnosticRules.cs b/src/Common/CommonDiagnosticRules.cs index 7f3b844ebb..5bfc2b082d 100644 --- a/src/Common/CommonDiagnosticRules.cs +++ b/src/Common/CommonDiagnosticRules.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.CodeAnalysis; diff --git a/src/Common/ConfigOptionDefaultValues.cs b/src/Common/ConfigOptionDefaultValues.cs index a13eb2000f..80cf00d0df 100644 --- a/src/Common/ConfigOptionDefaultValues.cs +++ b/src/Common/ConfigOptionDefaultValues.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator; diff --git a/src/Common/ConfigOptionDescriptor.cs b/src/Common/ConfigOptionDescriptor.cs index 20f1d4430c..e4e8a256e2 100644 --- a/src/Common/ConfigOptionDescriptor.cs +++ b/src/Common/ConfigOptionDescriptor.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator; diff --git a/src/Common/ConfigOptionKeys.Generated.cs b/src/Common/ConfigOptionKeys.Generated.cs index 7dfdb50c37..a35b9675c2 100644 --- a/src/Common/ConfigOptionKeys.Generated.cs +++ b/src/Common/ConfigOptionKeys.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/Common/ConfigOptionKeys.cs b/src/Common/ConfigOptionKeys.cs index cd423c9816..d07aa668eb 100644 --- a/src/Common/ConfigOptionKeys.cs +++ b/src/Common/ConfigOptionKeys.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator; diff --git a/src/Common/ConfigOptionValues.Generated.cs b/src/Common/ConfigOptionValues.Generated.cs index 4a9fa201d9..08f9ed6d7b 100644 --- a/src/Common/ConfigOptionValues.Generated.cs +++ b/src/Common/ConfigOptionValues.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/Common/ConfigOptions.Generated.cs b/src/Common/ConfigOptions.Generated.cs index f0d4426cc0..82c5cd06f0 100644 --- a/src/Common/ConfigOptions.Generated.cs +++ b/src/Common/ConfigOptions.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/Common/ConfigOptions.cs b/src/Common/ConfigOptions.cs index 9e26afe379..b470b5fc22 100644 --- a/src/Common/ConfigOptions.cs +++ b/src/Common/ConfigOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Diagnostics; diff --git a/src/Common/Configuration/CodeAnalysisConfig.cs b/src/Common/Configuration/CodeAnalysisConfig.cs index 89c600361f..491cfe9ebc 100644 --- a/src/Common/Configuration/CodeAnalysisConfig.cs +++ b/src/Common/Configuration/CodeAnalysisConfig.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Common/Configuration/ConfigMigrator.cs b/src/Common/Configuration/ConfigMigrator.cs index cf8abdc5f0..c0ba0bf36e 100644 --- a/src/Common/Configuration/ConfigMigrator.cs +++ b/src/Common/Configuration/ConfigMigrator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Common/Configuration/EditorConfigCodeAnalysisConfig.cs b/src/Common/Configuration/EditorConfigCodeAnalysisConfig.cs index eaecfc06cd..82e450ab86 100644 --- a/src/Common/Configuration/EditorConfigCodeAnalysisConfig.cs +++ b/src/Common/Configuration/EditorConfigCodeAnalysisConfig.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Common/Configuration/EditorConfigCodeAnalysisConfigLoader.cs b/src/Common/Configuration/EditorConfigCodeAnalysisConfigLoader.cs index fcd486c59a..7551f62506 100644 --- a/src/Common/Configuration/EditorConfigCodeAnalysisConfigLoader.cs +++ b/src/Common/Configuration/EditorConfigCodeAnalysisConfigLoader.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Common/Configuration/EditorConfigWriter.cs b/src/Common/Configuration/EditorConfigWriter.cs index a8597fa5d1..463da4206b 100644 --- a/src/Common/Configuration/EditorConfigWriter.cs +++ b/src/Common/Configuration/EditorConfigWriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Common/Configuration/VisualStudioCodeAnalysisConfig.cs b/src/Common/Configuration/VisualStudioCodeAnalysisConfig.cs index a114f1433a..16e294b9d0 100644 --- a/src/Common/Configuration/VisualStudioCodeAnalysisConfig.cs +++ b/src/Common/Configuration/VisualStudioCodeAnalysisConfig.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Common/Configuration/XmlCodeAnalysisConfig.cs b/src/Common/Configuration/XmlCodeAnalysisConfig.cs index 0a2b4eeff0..36e730149d 100644 --- a/src/Common/Configuration/XmlCodeAnalysisConfig.cs +++ b/src/Common/Configuration/XmlCodeAnalysisConfig.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Common/Configuration/XmlCodeAnalysisConfigLoader.cs b/src/Common/Configuration/XmlCodeAnalysisConfigLoader.cs index 7951a6e8fd..0a4dbda204 100644 --- a/src/Common/Configuration/XmlCodeAnalysisConfigLoader.cs +++ b/src/Common/Configuration/XmlCodeAnalysisConfigLoader.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Common/Configuration/XmlConfigLoadOptions.cs b/src/Common/Configuration/XmlConfigLoadOptions.cs index 825d3af288..001722096e 100644 --- a/src/Common/Configuration/XmlConfigLoadOptions.cs +++ b/src/Common/Configuration/XmlConfigLoadOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Common/Configuration/XmlExtensions.cs b/src/Common/Configuration/XmlExtensions.cs index e4270249fa..6bd990ad75 100644 --- a/src/Common/Configuration/XmlExtensions.cs +++ b/src/Common/Configuration/XmlExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Xml.Linq; diff --git a/src/Common/DiagnosticCategories.cs b/src/Common/DiagnosticCategories.cs index 773e6b9bbc..b73ed06a09 100644 --- a/src/Common/DiagnosticCategories.cs +++ b/src/Common/DiagnosticCategories.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Common/DiagnosticDescriptorFactory.cs b/src/Common/DiagnosticDescriptorFactory.cs index 0f8eb4e47b..5e0fabba4f 100644 --- a/src/Common/DiagnosticDescriptorFactory.cs +++ b/src/Common/DiagnosticDescriptorFactory.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Roslynator.Configuration; diff --git a/src/Common/DiagnosticHelpers.cs b/src/Common/DiagnosticHelpers.cs index 97f0421089..18ab22c3ce 100644 --- a/src/Common/DiagnosticHelpers.cs +++ b/src/Common/DiagnosticHelpers.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Common/DiagnosticProperties.cs b/src/Common/DiagnosticProperties.cs index d7b66c71c6..a0abbd9da8 100644 --- a/src/Common/DiagnosticProperties.cs +++ b/src/Common/DiagnosticProperties.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Common/EquivalenceKey.cs b/src/Common/EquivalenceKey.cs index ecc61ededb..e45cb4f58d 100644 --- a/src/Common/EquivalenceKey.cs +++ b/src/Common/EquivalenceKey.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using Microsoft.CodeAnalysis; diff --git a/src/Common/Extensions/CommonExtensions.cs b/src/Common/Extensions/CommonExtensions.cs index 176a8cdc86..b01ead852a 100644 --- a/src/Common/Extensions/CommonExtensions.cs +++ b/src/Common/Extensions/CommonExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Globalization; using Microsoft.CodeAnalysis; diff --git a/src/Common/Extensions/HashSetExtensions.cs b/src/Common/Extensions/HashSetExtensions.cs index 6cb500ec20..78c5505b34 100644 --- a/src/Common/Extensions/HashSetExtensions.cs +++ b/src/Common/Extensions/HashSetExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; diff --git a/src/Common/IndentStyle.cs b/src/Common/IndentStyle.cs index 47ff3c822c..c84cbf8d39 100644 --- a/src/Common/IndentStyle.cs +++ b/src/Common/IndentStyle.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator; diff --git a/src/Common/LegacyConfigOptionDescriptor.cs b/src/Common/LegacyConfigOptionDescriptor.cs index a4a244dd63..13ae325a84 100644 --- a/src/Common/LegacyConfigOptionDescriptor.cs +++ b/src/Common/LegacyConfigOptionDescriptor.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator; diff --git a/src/Common/LegacyConfigOptions..cs b/src/Common/LegacyConfigOptions..cs index 405eafda97..171c3e35f2 100644 --- a/src/Common/LegacyConfigOptions..cs +++ b/src/Common/LegacyConfigOptions..cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator; diff --git a/src/Common/LegacyConfigOptions.Generated.cs b/src/Common/LegacyConfigOptions.Generated.cs index e80fca89c2..bf02dbbffb 100644 --- a/src/Common/LegacyConfigOptions.Generated.cs +++ b/src/Common/LegacyConfigOptions.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/Common/OptionSet`1.cs b/src/Common/OptionSet`1.cs index 86571b02f6..f571014105 100644 --- a/src/Common/OptionSet`1.cs +++ b/src/Common/OptionSet`1.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Diagnostics; diff --git a/src/Common/RefactoringDescriptor.cs b/src/Common/RefactoringDescriptor.cs index 235f30c0b0..566ad87979 100644 --- a/src/Common/RefactoringDescriptor.cs +++ b/src/Common/RefactoringDescriptor.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/Common/RoslynMetadataNames.cs b/src/Common/RoslynMetadataNames.cs index 9782bb1cf9..08e3d0c1d5 100644 --- a/src/Common/RoslynMetadataNames.cs +++ b/src/Common/RoslynMetadataNames.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator; diff --git a/src/Common/RuleSetLoader.cs b/src/Common/RuleSetLoader.cs index bede7c9d10..5b370a16d2 100644 --- a/src/Common/RuleSetLoader.cs +++ b/src/Common/RuleSetLoader.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Core/AccessibilityFilter.cs b/src/Core/AccessibilityFilter.cs index bb453eaa3a..26e509c928 100644 --- a/src/Core/AccessibilityFilter.cs +++ b/src/Core/AccessibilityFilter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Core/AsyncMethodNameGenerator.cs b/src/Core/AsyncMethodNameGenerator.cs index 566353ded0..54ba22ab84 100644 --- a/src/Core/AsyncMethodNameGenerator.cs +++ b/src/Core/AsyncMethodNameGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Core/Collections/Enumerable`1.cs b/src/Core/Collections/Enumerable`1.cs index c861de3491..91648dc154 100644 --- a/src/Core/Collections/Enumerable`1.cs +++ b/src/Core/Collections/Enumerable`1.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections; using System.Collections.Generic; diff --git a/src/Core/Collections/Enumerator.cs b/src/Core/Collections/Enumerator.cs index dc71ae661f..745c4596d5 100644 --- a/src/Core/Collections/Enumerator.cs +++ b/src/Core/Collections/Enumerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/Core/Collections/Enumerator`1.cs b/src/Core/Collections/Enumerator`1.cs index bc82bc1e17..cc37b6f084 100644 --- a/src/Core/Collections/Enumerator`1.cs +++ b/src/Core/Collections/Enumerator`1.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Core/Collections/ReadOnlyCollection`1.cs b/src/Core/Collections/ReadOnlyCollection`1.cs index de43d931e7..634f7b0b4c 100644 --- a/src/Core/Collections/ReadOnlyCollection`1.cs +++ b/src/Core/Collections/ReadOnlyCollection`1.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Core/Collections/ReadOnlyList`1.cs b/src/Core/Collections/ReadOnlyList`1.cs index 30b086cb9f..05a6c1ab99 100644 --- a/src/Core/Collections/ReadOnlyList`1.cs +++ b/src/Core/Collections/ReadOnlyList`1.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Core/CommonDiagnosticIdentifiers.cs b/src/Core/CommonDiagnosticIdentifiers.cs index 9fd5e4d15f..fa61b65c77 100644 --- a/src/Core/CommonDiagnosticIdentifiers.cs +++ b/src/Core/CommonDiagnosticIdentifiers.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator; diff --git a/src/Core/ConvertHelpers.cs b/src/Core/ConvertHelpers.cs index 6f50487d2b..b8d6c014e8 100644 --- a/src/Core/ConvertHelpers.cs +++ b/src/Core/ConvertHelpers.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.CodeAnalysis; diff --git a/src/Core/CreateNameFromTypeSymbolHelper.cs b/src/Core/CreateNameFromTypeSymbolHelper.cs index 0c07ad3f9d..56f3dce90d 100644 --- a/src/Core/CreateNameFromTypeSymbolHelper.cs +++ b/src/Core/CreateNameFromTypeSymbolHelper.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Core/DefaultNames.cs b/src/Core/DefaultNames.cs index 1ae701c2d8..aa6ece98e4 100644 --- a/src/Core/DefaultNames.cs +++ b/src/Core/DefaultNames.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator; diff --git a/src/Core/DiagnosticComparer.cs b/src/Core/DiagnosticComparer.cs index d6401c2bd6..09ece4cd31 100644 --- a/src/Core/DiagnosticComparer.cs +++ b/src/Core/DiagnosticComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/Core/DiagnosticDeepEqualityComparer.cs b/src/Core/DiagnosticDeepEqualityComparer.cs index f88a634f24..e5a2f08e65 100644 --- a/src/Core/DiagnosticDeepEqualityComparer.cs +++ b/src/Core/DiagnosticDeepEqualityComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Core/DiagnosticDescriptorComparer.cs b/src/Core/DiagnosticDescriptorComparer.cs index c6eba73aee..0abe9f4901 100644 --- a/src/Core/DiagnosticDescriptorComparer.cs +++ b/src/Core/DiagnosticDescriptorComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/Core/DiagnosticDescriptorUtility.cs b/src/Core/DiagnosticDescriptorUtility.cs index 04d4860f10..b573d5c343 100644 --- a/src/Core/DiagnosticDescriptorUtility.cs +++ b/src/Core/DiagnosticDescriptorUtility.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator; diff --git a/src/Core/DiagnosticIdComparer.cs b/src/Core/DiagnosticIdComparer.cs index 4821bb86a0..49fa373f0d 100644 --- a/src/Core/DiagnosticIdComparer.cs +++ b/src/Core/DiagnosticIdComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/Core/DiagnosticIdPrefix.cs b/src/Core/DiagnosticIdPrefix.cs index 7ef0b19de5..5c950adf87 100644 --- a/src/Core/DiagnosticIdPrefix.cs +++ b/src/Core/DiagnosticIdPrefix.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Core/Documentation/DocumentationCommentData.cs b/src/Core/Documentation/DocumentationCommentData.cs index 0a03916260..c1bae49833 100644 --- a/src/Core/Documentation/DocumentationCommentData.cs +++ b/src/Core/Documentation/DocumentationCommentData.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; diff --git a/src/Core/Documentation/DocumentationCommentGeneratorSettings.cs b/src/Core/Documentation/DocumentationCommentGeneratorSettings.cs index 45963dd1d6..5340745b9b 100644 --- a/src/Core/Documentation/DocumentationCommentGeneratorSettings.cs +++ b/src/Core/Documentation/DocumentationCommentGeneratorSettings.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Core/Documentation/DocumentationCommentOrigin.cs b/src/Core/Documentation/DocumentationCommentOrigin.cs index 94e59728c5..4fc2ae339f 100644 --- a/src/Core/Documentation/DocumentationCommentOrigin.cs +++ b/src/Core/Documentation/DocumentationCommentOrigin.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Documentation; diff --git a/src/Core/Empty.cs b/src/Core/Empty.cs index 4ef8607064..69c3c52ac1 100644 --- a/src/Core/Empty.cs +++ b/src/Core/Empty.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; diff --git a/src/Core/EnumFieldSymbolInfo.cs b/src/Core/EnumFieldSymbolInfo.cs index f59e6537ac..918a442980 100644 --- a/src/Core/EnumFieldSymbolInfo.cs +++ b/src/Core/EnumFieldSymbolInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Core/EnumSymbolInfo.cs b/src/Core/EnumSymbolInfo.cs index 7e2f463663..bf236b377b 100644 --- a/src/Core/EnumSymbolInfo.cs +++ b/src/Core/EnumSymbolInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Core/EnumUtility.cs b/src/Core/EnumUtility.cs index 326964a589..a4ff8ebccb 100644 --- a/src/Core/EnumUtility.cs +++ b/src/Core/EnumUtility.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Diagnostics; diff --git a/src/Core/EnumValueComparer.cs b/src/Core/EnumValueComparer.cs index 7a909d2ec0..fe402ef70a 100644 --- a/src/Core/EnumValueComparer.cs +++ b/src/Core/EnumValueComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Core/ExtensionMethodSymbolInfo.cs b/src/Core/ExtensionMethodSymbolInfo.cs index 0e30d4d74e..3cb004d9a1 100644 --- a/src/Core/ExtensionMethodSymbolInfo.cs +++ b/src/Core/ExtensionMethodSymbolInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Core/Extensions/DiagnosticsExtensions.cs b/src/Core/Extensions/DiagnosticsExtensions.cs index 0a4f44d5ea..2b138504d0 100644 --- a/src/Core/Extensions/DiagnosticsExtensions.cs +++ b/src/Core/Extensions/DiagnosticsExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Core/Extensions/EnumExtensions.cs b/src/Core/Extensions/EnumExtensions.cs index 4a120f6187..a5a5b00fb6 100644 --- a/src/Core/Extensions/EnumExtensions.cs +++ b/src/Core/Extensions/EnumExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.CodeAnalysis; diff --git a/src/Core/Extensions/EnumerableExtensions.cs b/src/Core/Extensions/EnumerableExtensions.cs index a3f8621440..01b77d80a4 100644 --- a/src/Core/Extensions/EnumerableExtensions.cs +++ b/src/Core/Extensions/EnumerableExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Core/Extensions/FileLinePositionSpanExtensions.cs b/src/Core/Extensions/FileLinePositionSpanExtensions.cs index c7e0b26a04..c1ea4a4b4c 100644 --- a/src/Core/Extensions/FileLinePositionSpanExtensions.cs +++ b/src/Core/Extensions/FileLinePositionSpanExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; diff --git a/src/Core/Extensions/ListExtensions.cs b/src/Core/Extensions/ListExtensions.cs index ebe0fac36e..cd7fec36eb 100644 --- a/src/Core/Extensions/ListExtensions.cs +++ b/src/Core/Extensions/ListExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Core/Extensions/SemanticModelExtensions.cs b/src/Core/Extensions/SemanticModelExtensions.cs index 721aab16c6..5bf4f013ce 100644 --- a/src/Core/Extensions/SemanticModelExtensions.cs +++ b/src/Core/Extensions/SemanticModelExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Core/Extensions/SymbolDisplayFormatExtensions.cs b/src/Core/Extensions/SymbolDisplayFormatExtensions.cs index c9a87b0daf..4bc8e1c0f1 100644 --- a/src/Core/Extensions/SymbolDisplayFormatExtensions.cs +++ b/src/Core/Extensions/SymbolDisplayFormatExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; diff --git a/src/Core/Extensions/SymbolExtensions.cs b/src/Core/Extensions/SymbolExtensions.cs index a927f1cd4d..2a20dcb5a1 100644 --- a/src/Core/Extensions/SymbolExtensions.cs +++ b/src/Core/Extensions/SymbolExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/Core/Extensions/SyntaxExtensions.cs b/src/Core/Extensions/SyntaxExtensions.cs index 22c510f9f7..240849df29 100644 --- a/src/Core/Extensions/SyntaxExtensions.cs +++ b/src/Core/Extensions/SyntaxExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Core/Extensions/SyntaxTreeExtensions.cs b/src/Core/Extensions/SyntaxTreeExtensions.cs index 18893bbf08..6bccc5fa3b 100644 --- a/src/Core/Extensions/SyntaxTreeExtensions.cs +++ b/src/Core/Extensions/SyntaxTreeExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading; diff --git a/src/Core/Extensions/TextExtensions.cs b/src/Core/Extensions/TextExtensions.cs index 3b4ae80ca6..8d5deacc38 100644 --- a/src/Core/Extensions/TextExtensions.cs +++ b/src/Core/Extensions/TextExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Core/Extensions/TextSpanExtensions.cs b/src/Core/Extensions/TextSpanExtensions.cs index bfec4f791c..60599c075c 100644 --- a/src/Core/Extensions/TextSpanExtensions.cs +++ b/src/Core/Extensions/TextSpanExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading; diff --git a/src/Core/FileSystemHelpers.cs b/src/Core/FileSystemHelpers.cs index 724c370430..9e4199b23d 100644 --- a/src/Core/FileSystemHelpers.cs +++ b/src/Core/FileSystemHelpers.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/Core/FlagsUtility`1.cs b/src/Core/FlagsUtility`1.cs index 98d9a85c5e..60990ee139 100644 --- a/src/Core/FlagsUtility`1.cs +++ b/src/Core/FlagsUtility`1.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Core/GeneratedCodeUtility.cs b/src/Core/GeneratedCodeUtility.cs index 4287357ae0..4eb1d8e7fc 100644 --- a/src/Core/GeneratedCodeUtility.cs +++ b/src/Core/GeneratedCodeUtility.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.IO; diff --git a/src/Core/GlobalSuppressions.cs b/src/Core/GlobalSuppressions.cs index fd57b17a15..712d432700 100644 --- a/src/Core/GlobalSuppressions.cs +++ b/src/Core/GlobalSuppressions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // This file is used by Code Analysis to maintain SuppressMessage // attributes that are applied to this project. diff --git a/src/Core/Hash.cs b/src/Core/Hash.cs index 43b689a1ec..a6fba55a62 100644 --- a/src/Core/Hash.cs +++ b/src/Core/Hash.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Core/ISelection`1.cs b/src/Core/ISelection`1.cs index a5b3dadd4e..67afe546f9 100644 --- a/src/Core/ISelection`1.cs +++ b/src/Core/ISelection`1.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; diff --git a/src/Core/Immutable.cs b/src/Core/Immutable.cs index d3c7fac301..60e0756a0e 100644 --- a/src/Core/Immutable.cs +++ b/src/Core/Immutable.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; diff --git a/src/Core/Interval.cs b/src/Core/Interval.cs index 75af5a2403..4e77f6913a 100644 --- a/src/Core/Interval.cs +++ b/src/Core/Interval.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Core/IsExternalInit.cs b/src/Core/IsExternalInit.cs index d74a96d951..3784907c39 100644 --- a/src/Core/IsExternalInit.cs +++ b/src/Core/IsExternalInit.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace System.Runtime.CompilerServices; diff --git a/src/Core/MemberDeclarationKind.cs b/src/Core/MemberDeclarationKind.cs index 1bea4221f7..0853d8438b 100644 --- a/src/Core/MemberDeclarationKind.cs +++ b/src/Core/MemberDeclarationKind.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator; diff --git a/src/Core/MetadataName.cs b/src/Core/MetadataName.cs index e7207f2904..8e975bb709 100644 --- a/src/Core/MetadataName.cs +++ b/src/Core/MetadataName.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Core/MetadataNameEqualityComparer`1.cs b/src/Core/MetadataNameEqualityComparer`1.cs index 090b9f7818..37a571c155 100644 --- a/src/Core/MetadataNameEqualityComparer`1.cs +++ b/src/Core/MetadataNameEqualityComparer`1.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Core/MetadataNames.cs b/src/Core/MetadataNames.cs index 3dfaf356cc..f17b234697 100644 --- a/src/Core/MetadataNames.cs +++ b/src/Core/MetadataNames.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator; diff --git a/src/Core/NameGenerator.cs b/src/Core/NameGenerator.cs index e19b2049d1..9d86b0af6e 100644 --- a/src/Core/NameGenerator.cs +++ b/src/Core/NameGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Core/NameGenerators.cs b/src/Core/NameGenerators.cs index 1c5b16527f..50da21964c 100644 --- a/src/Core/NameGenerators.cs +++ b/src/Core/NameGenerators.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator; diff --git a/src/Core/NumberSuffixNameGenerator.cs b/src/Core/NumberSuffixNameGenerator.cs index 3fcff133d6..87bdb56857 100644 --- a/src/Core/NumberSuffixNameGenerator.cs +++ b/src/Core/NumberSuffixNameGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Core/OneOrMany.cs b/src/Core/OneOrMany.cs index 61251f48b1..96186cb761 100644 --- a/src/Core/OneOrMany.cs +++ b/src/Core/OneOrMany.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Core/OneOrMany`1.cs b/src/Core/OneOrMany`1.cs index 9d6f2d0537..7b55b773db 100644 --- a/src/Core/OneOrMany`1.cs +++ b/src/Core/OneOrMany`1.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/Core/OverriddenSymbolInfo.cs b/src/Core/OverriddenSymbolInfo.cs index 1d2c4d6ee3..ff93318f4f 100644 --- a/src/Core/OverriddenSymbolInfo.cs +++ b/src/Core/OverriddenSymbolInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Core/SelectionResult.cs b/src/Core/SelectionResult.cs index 64da2db7c8..8f336b49d8 100644 --- a/src/Core/SelectionResult.cs +++ b/src/Core/SelectionResult.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/Core/SeparatedSyntaxListSelection`1.cs b/src/Core/SeparatedSyntaxListSelection`1.cs index 692c49dfda..773207d894 100644 --- a/src/Core/SeparatedSyntaxListSelection`1.cs +++ b/src/Core/SeparatedSyntaxListSelection`1.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/Core/StringUtility.cs b/src/Core/StringUtility.cs index 3cf83a424d..145d56202c 100644 --- a/src/Core/StringUtility.cs +++ b/src/Core/StringUtility.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Text; diff --git a/src/Core/SymbolDisplayFormats.cs b/src/Core/SymbolDisplayFormats.cs index 2405a2b2be..caa6e1d719 100644 --- a/src/Core/SymbolDisplayFormats.cs +++ b/src/Core/SymbolDisplayFormats.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; diff --git a/src/Core/SymbolDisplayPartFactory.cs b/src/Core/SymbolDisplayPartFactory.cs index f510d129cd..737c059d66 100644 --- a/src/Core/SymbolDisplayPartFactory.cs +++ b/src/Core/SymbolDisplayPartFactory.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.CodeAnalysis; diff --git a/src/Core/SymbolDisplayTypeDeclarationOptions.cs b/src/Core/SymbolDisplayTypeDeclarationOptions.cs index 05afe03210..85fb99d6e9 100644 --- a/src/Core/SymbolDisplayTypeDeclarationOptions.cs +++ b/src/Core/SymbolDisplayTypeDeclarationOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Core/SymbolUtility.cs b/src/Core/SymbolUtility.cs index ffb097f0d2..f586059440 100644 --- a/src/Core/SymbolUtility.cs +++ b/src/Core/SymbolUtility.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Core/SyntaxListSelection`1.cs b/src/Core/SyntaxListSelection`1.cs index 8afd2d9b94..0b279daefe 100644 --- a/src/Core/SyntaxListSelection`1.cs +++ b/src/Core/SyntaxListSelection`1.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/Core/SyntaxUtility.cs b/src/Core/SyntaxUtility.cs index f72612fc82..28767ea05d 100644 --- a/src/Core/SyntaxUtility.cs +++ b/src/Core/SyntaxUtility.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using Microsoft.CodeAnalysis; diff --git a/src/Core/Text/IndentationChange.cs b/src/Core/Text/IndentationChange.cs index 67ff9a6c85..aca2db64ac 100644 --- a/src/Core/Text/IndentationChange.cs +++ b/src/Core/Text/IndentationChange.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Core/Text/IndentationInfo.cs b/src/Core/Text/IndentationInfo.cs index a84bdc8737..cd7c7dc519 100644 --- a/src/Core/Text/IndentationInfo.cs +++ b/src/Core/Text/IndentationInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/Core/Text/StringBuilderCache.cs b/src/Core/Text/StringBuilderCache.cs index 0e72d8fc8a..1f86c9525d 100644 --- a/src/Core/Text/StringBuilderCache.cs +++ b/src/Core/Text/StringBuilderCache.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Text; diff --git a/src/Core/Text/StringBuilderExtensions.cs b/src/Core/Text/StringBuilderExtensions.cs index e77076cd55..77d0f84909 100644 --- a/src/Core/Text/StringBuilderExtensions.cs +++ b/src/Core/Text/StringBuilderExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Text; diff --git a/src/Core/Text/SyntaxNodeTextBuilder.cs b/src/Core/Text/SyntaxNodeTextBuilder.cs index bd2c61c65e..bfb8fee8fa 100644 --- a/src/Core/Text/SyntaxNodeTextBuilder.cs +++ b/src/Core/Text/SyntaxNodeTextBuilder.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/Core/Text/TextLineCollectionSelection.cs b/src/Core/Text/TextLineCollectionSelection.cs index 7a9d1e33d2..6643bbb93a 100644 --- a/src/Core/Text/TextLineCollectionSelection.cs +++ b/src/Core/Text/TextLineCollectionSelection.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/Core/TypeAnalysis.cs b/src/Core/TypeAnalysis.cs index f209edfe85..15a1f3c455 100644 --- a/src/Core/TypeAnalysis.cs +++ b/src/Core/TypeAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/Core/TypeAnalysisFlags.cs b/src/Core/TypeAnalysisFlags.cs index 3498b35641..5df20268cb 100644 --- a/src/Core/TypeAnalysisFlags.cs +++ b/src/Core/TypeAnalysisFlags.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Core/TypeAppearance.cs b/src/Core/TypeAppearance.cs index a01d9be120..d1eac55181 100644 --- a/src/Core/TypeAppearance.cs +++ b/src/Core/TypeAppearance.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator; diff --git a/src/Core/UnderscoreSuffixNameGenerator.cs b/src/Core/UnderscoreSuffixNameGenerator.cs index 768b7e493d..81649ec3d1 100644 --- a/src/Core/UnderscoreSuffixNameGenerator.cs +++ b/src/Core/UnderscoreSuffixNameGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Core/Visibility.cs b/src/Core/Visibility.cs index 800b45ce81..8a453fc779 100644 --- a/src/Core/Visibility.cs +++ b/src/Core/Visibility.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator; diff --git a/src/Core/VisibilityFilter.cs b/src/Core/VisibilityFilter.cs index 17bece47a5..b922c86ffc 100644 --- a/src/Core/VisibilityFilter.cs +++ b/src/Core/VisibilityFilter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Core/WellKnownDiagnosticIdPrefixes.cs b/src/Core/WellKnownDiagnosticIdPrefixes.cs index 7df9ca2046..cb19e78ddb 100644 --- a/src/Core/WellKnownDiagnosticIdPrefixes.cs +++ b/src/Core/WellKnownDiagnosticIdPrefixes.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator; diff --git a/src/Core/WellKnownXmlTags.cs b/src/Core/WellKnownXmlTags.cs index 6bb9a9958e..e2f378b713 100644 --- a/src/Core/WellKnownXmlTags.cs +++ b/src/Core/WellKnownXmlTags.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator; diff --git a/src/Core/XmlTag.cs b/src/Core/XmlTag.cs index af1e847b9c..b837c57441 100644 --- a/src/Core/XmlTag.cs +++ b/src/Core/XmlTag.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator; diff --git a/src/Core/XmlTagMapper.cs b/src/Core/XmlTagMapper.cs index e8d612acd1..9254858b0a 100644 --- a/src/Core/XmlTagMapper.cs +++ b/src/Core/XmlTagMapper.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Documentation/AbstractSymbolDefinitionTextWriter.cs b/src/Documentation/AbstractSymbolDefinitionTextWriter.cs index 317c9b98b4..4fb5086a76 100644 --- a/src/Documentation/AbstractSymbolDefinitionTextWriter.cs +++ b/src/Documentation/AbstractSymbolDefinitionTextWriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Roslynator.FindSymbols; diff --git a/src/Documentation/CommonDocumentationParts.cs b/src/Documentation/CommonDocumentationParts.cs index fa7e7db3a5..d1c0bcf33d 100644 --- a/src/Documentation/CommonDocumentationParts.cs +++ b/src/Documentation/CommonDocumentationParts.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Documentation/DefinitionListFormat.cs b/src/Documentation/DefinitionListFormat.cs index 8a97642b9a..a7f9379b9f 100644 --- a/src/Documentation/DefinitionListFormat.cs +++ b/src/Documentation/DefinitionListFormat.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; diff --git a/src/Documentation/DocumentationContext.cs b/src/Documentation/DocumentationContext.cs index 360b3e3966..c7005534d0 100644 --- a/src/Documentation/DocumentationContext.cs +++ b/src/Documentation/DocumentationContext.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Documentation/DocumentationDepth.cs b/src/Documentation/DocumentationDepth.cs index db42bf553b..d05e237634 100644 --- a/src/Documentation/DocumentationDepth.cs +++ b/src/Documentation/DocumentationDepth.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Documentation; diff --git a/src/Documentation/DocumentationDisplayFormats.cs b/src/Documentation/DocumentationDisplayFormats.cs index cabb2276bc..1938f05152 100644 --- a/src/Documentation/DocumentationDisplayFormats.cs +++ b/src/Documentation/DocumentationDisplayFormats.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; diff --git a/src/Documentation/DocumentationFileKind.cs b/src/Documentation/DocumentationFileKind.cs index fc801da35c..d001646018 100644 --- a/src/Documentation/DocumentationFileKind.cs +++ b/src/Documentation/DocumentationFileKind.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Documentation; diff --git a/src/Documentation/DocumentationFilterOptions.cs b/src/Documentation/DocumentationFilterOptions.cs index 535df69ff8..f22325e955 100644 --- a/src/Documentation/DocumentationFilterOptions.cs +++ b/src/Documentation/DocumentationFilterOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Documentation/DocumentationGenerator.cs b/src/Documentation/DocumentationGenerator.cs index e05ee62993..66a36642c7 100644 --- a/src/Documentation/DocumentationGenerator.cs +++ b/src/Documentation/DocumentationGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Documentation/DocumentationGeneratorResult.cs b/src/Documentation/DocumentationGeneratorResult.cs index 0ac18e2585..ae44decbcb 100644 --- a/src/Documentation/DocumentationGeneratorResult.cs +++ b/src/Documentation/DocumentationGeneratorResult.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; diff --git a/src/Documentation/DocumentationModel.cs b/src/Documentation/DocumentationModel.cs index 7d5614bcc0..320b32dd87 100644 --- a/src/Documentation/DocumentationModel.cs +++ b/src/Documentation/DocumentationModel.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Documentation/DocumentationOptions.cs b/src/Documentation/DocumentationOptions.cs index ee0fb08e71..3e49dea093 100644 --- a/src/Documentation/DocumentationOptions.cs +++ b/src/Documentation/DocumentationOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Documentation/DocumentationResources.cs b/src/Documentation/DocumentationResources.cs index 4e6634f55a..9c226d4d5e 100644 --- a/src/Documentation/DocumentationResources.cs +++ b/src/Documentation/DocumentationResources.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.CodeAnalysis; diff --git a/src/Documentation/DocumentationUrlInfo.cs b/src/Documentation/DocumentationUrlInfo.cs index 91e0c32473..ec5c431c82 100644 --- a/src/Documentation/DocumentationUrlInfo.cs +++ b/src/Documentation/DocumentationUrlInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Documentation/DocumentationUrlKind.cs b/src/Documentation/DocumentationUrlKind.cs index 7b812fd7fa..3eaf3d5e6c 100644 --- a/src/Documentation/DocumentationUrlKind.cs +++ b/src/Documentation/DocumentationUrlKind.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Documentation; diff --git a/src/Documentation/DocumentationUtility.cs b/src/Documentation/DocumentationUtility.cs index 9dd8c61bd5..f4f1abb7c4 100644 --- a/src/Documentation/DocumentationUtility.cs +++ b/src/Documentation/DocumentationUtility.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Documentation/DocumentationWriter.cs b/src/Documentation/DocumentationWriter.cs index 6c6639d039..0c99d9ced5 100644 --- a/src/Documentation/DocumentationWriter.cs +++ b/src/Documentation/DocumentationWriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Documentation/Extensions/SymbolDisplayPartExtensions.cs b/src/Documentation/Extensions/SymbolDisplayPartExtensions.cs index 05829b798f..a9549c2414 100644 --- a/src/Documentation/Extensions/SymbolDisplayPartExtensions.cs +++ b/src/Documentation/Extensions/SymbolDisplayPartExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; diff --git a/src/Documentation/Extensions/SymbolExtensions.cs b/src/Documentation/Extensions/SymbolExtensions.cs index b798b77cca..0187ce4bc2 100644 --- a/src/Documentation/Extensions/SymbolExtensions.cs +++ b/src/Documentation/Extensions/SymbolExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Documentation/Extensions/XmlExtensions.cs b/src/Documentation/Extensions/XmlExtensions.cs index c54d179bf1..1a54650894 100644 --- a/src/Documentation/Extensions/XmlExtensions.cs +++ b/src/Documentation/Extensions/XmlExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Diagnostics; diff --git a/src/Documentation/FilesLayout.cs b/src/Documentation/FilesLayout.cs index f853b0cf8a..f3992aac80 100644 --- a/src/Documentation/FilesLayout.cs +++ b/src/Documentation/FilesLayout.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Documentation; diff --git a/src/Documentation/IncludeContainingNamespaceFilter.cs b/src/Documentation/IncludeContainingNamespaceFilter.cs index d84d9d5745..43ee8fc91e 100644 --- a/src/Documentation/IncludeContainingNamespaceFilter.cs +++ b/src/Documentation/IncludeContainingNamespaceFilter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Documentation/InheritDocUtility.cs b/src/Documentation/InheritDocUtility.cs index ec4929a887..d9e938d1d9 100644 --- a/src/Documentation/InheritDocUtility.cs +++ b/src/Documentation/InheritDocUtility.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Documentation/InheritanceStyle.cs b/src/Documentation/InheritanceStyle.cs index f9ebf12d35..e2bf4ad159 100644 --- a/src/Documentation/InheritanceStyle.cs +++ b/src/Documentation/InheritanceStyle.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Documentation; diff --git a/src/Documentation/Markdown/DocusaurusDocumentationWriter.cs b/src/Documentation/Markdown/DocusaurusDocumentationWriter.cs index 82dba6d807..332a29335d 100644 --- a/src/Documentation/Markdown/DocusaurusDocumentationWriter.cs +++ b/src/Documentation/Markdown/DocusaurusDocumentationWriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using DotMarkdown; using Microsoft.CodeAnalysis; diff --git a/src/Documentation/Markdown/GitHubDocumentationWriter.cs b/src/Documentation/Markdown/GitHubDocumentationWriter.cs index a0abdda595..23101bf2c3 100644 --- a/src/Documentation/Markdown/GitHubDocumentationWriter.cs +++ b/src/Documentation/Markdown/GitHubDocumentationWriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using DotMarkdown; diff --git a/src/Documentation/Markdown/MarkdownDocumentationWriter.cs b/src/Documentation/Markdown/MarkdownDocumentationWriter.cs index 6a11ad7ffb..ef10e79c32 100644 --- a/src/Documentation/Markdown/MarkdownDocumentationWriter.cs +++ b/src/Documentation/Markdown/MarkdownDocumentationWriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using DotMarkdown; using Microsoft.CodeAnalysis; diff --git a/src/Documentation/Markdown/SphinxDocumentationWriter.cs b/src/Documentation/Markdown/SphinxDocumentationWriter.cs index e045f82dc2..5187fbeab6 100644 --- a/src/Documentation/Markdown/SphinxDocumentationWriter.cs +++ b/src/Documentation/Markdown/SphinxDocumentationWriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using DotMarkdown; diff --git a/src/Documentation/Markdown/SymbolDefinitionMarkdownWriter.cs b/src/Documentation/Markdown/SymbolDefinitionMarkdownWriter.cs index e160d25dfb..2b2829eb86 100644 --- a/src/Documentation/Markdown/SymbolDefinitionMarkdownWriter.cs +++ b/src/Documentation/Markdown/SymbolDefinitionMarkdownWriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Diagnostics; diff --git a/src/Documentation/MemberDocumentationPartComparer.cs b/src/Documentation/MemberDocumentationPartComparer.cs index 274455742f..aa3e317059 100644 --- a/src/Documentation/MemberDocumentationPartComparer.cs +++ b/src/Documentation/MemberDocumentationPartComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Diagnostics; diff --git a/src/Documentation/MemberDocumentationParts.cs b/src/Documentation/MemberDocumentationParts.cs index b730a3bf96..bc07505052 100644 --- a/src/Documentation/MemberDocumentationParts.cs +++ b/src/Documentation/MemberDocumentationParts.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Documentation/MemberSymbolEqualityComparer.cs b/src/Documentation/MemberSymbolEqualityComparer.cs index a0133af0ac..d831893efa 100644 --- a/src/Documentation/MemberSymbolEqualityComparer.cs +++ b/src/Documentation/MemberSymbolEqualityComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Documentation/NamespaceDocumentationPartComparer.cs b/src/Documentation/NamespaceDocumentationPartComparer.cs index 8662231d36..d89c0e5b61 100644 --- a/src/Documentation/NamespaceDocumentationPartComparer.cs +++ b/src/Documentation/NamespaceDocumentationPartComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Diagnostics; diff --git a/src/Documentation/NamespaceDocumentationParts.cs b/src/Documentation/NamespaceDocumentationParts.cs index b616f252e8..370d54ba14 100644 --- a/src/Documentation/NamespaceDocumentationParts.cs +++ b/src/Documentation/NamespaceDocumentationParts.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Documentation/RootDocumentationPartComparer.cs b/src/Documentation/RootDocumentationPartComparer.cs index fc240e89e3..e1dd16ce29 100644 --- a/src/Documentation/RootDocumentationPartComparer.cs +++ b/src/Documentation/RootDocumentationPartComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Diagnostics; diff --git a/src/Documentation/RootDocumentationParts.cs b/src/Documentation/RootDocumentationParts.cs index 0b2cf61b51..20c03c14e0 100644 --- a/src/Documentation/RootDocumentationParts.cs +++ b/src/Documentation/RootDocumentationParts.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Documentation/SourceReference.cs b/src/Documentation/SourceReference.cs index 3e5c3c0c5a..4cac781d3c 100644 --- a/src/Documentation/SourceReference.cs +++ b/src/Documentation/SourceReference.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Documentation/SourceReferenceProvider.cs b/src/Documentation/SourceReferenceProvider.cs index 327273d22b..2ae31f1997 100644 --- a/src/Documentation/SourceReferenceProvider.cs +++ b/src/Documentation/SourceReferenceProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Documentation/SymbolComparer.cs b/src/Documentation/SymbolComparer.cs index ff5fe4e8cf..1ea6e64dba 100644 --- a/src/Documentation/SymbolComparer.cs +++ b/src/Documentation/SymbolComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Documentation/SymbolDefinitionDisplay.cs b/src/Documentation/SymbolDefinitionDisplay.cs index d19c7ee6f6..e7d455339f 100644 --- a/src/Documentation/SymbolDefinitionDisplay.cs +++ b/src/Documentation/SymbolDefinitionDisplay.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Documentation/SymbolDefinitionListLayout.cs b/src/Documentation/SymbolDefinitionListLayout.cs index 3e977eb862..126ec81af4 100644 --- a/src/Documentation/SymbolDefinitionListLayout.cs +++ b/src/Documentation/SymbolDefinitionListLayout.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Documentation; diff --git a/src/Documentation/SymbolDefinitionPartFilter.cs b/src/Documentation/SymbolDefinitionPartFilter.cs index 652511074e..aa660c8d99 100644 --- a/src/Documentation/SymbolDefinitionPartFilter.cs +++ b/src/Documentation/SymbolDefinitionPartFilter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Documentation/SymbolDefinitionTextWriter.cs b/src/Documentation/SymbolDefinitionTextWriter.cs index b8c0208555..adfb23b91c 100644 --- a/src/Documentation/SymbolDefinitionTextWriter.cs +++ b/src/Documentation/SymbolDefinitionTextWriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.IO; diff --git a/src/Documentation/SymbolDefinitionWriter.cs b/src/Documentation/SymbolDefinitionWriter.cs index 43c19f52b9..f5675288ef 100644 --- a/src/Documentation/SymbolDefinitionWriter.cs +++ b/src/Documentation/SymbolDefinitionWriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Documentation/SymbolDefinitionWriterHelpers.cs b/src/Documentation/SymbolDefinitionWriterHelpers.cs index c10bea2f22..75185311a7 100644 --- a/src/Documentation/SymbolDefinitionWriterHelpers.cs +++ b/src/Documentation/SymbolDefinitionWriterHelpers.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Documentation/SymbolDisplayAdditionalMemberOptions.cs b/src/Documentation/SymbolDisplayAdditionalMemberOptions.cs index 56ef629100..035f404f69 100644 --- a/src/Documentation/SymbolDisplayAdditionalMemberOptions.cs +++ b/src/Documentation/SymbolDisplayAdditionalMemberOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Documentation/SymbolDisplayAdditionalOptions.cs b/src/Documentation/SymbolDisplayAdditionalOptions.cs index 5e5d530f72..baecd610d6 100644 --- a/src/Documentation/SymbolDisplayAdditionalOptions.cs +++ b/src/Documentation/SymbolDisplayAdditionalOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Documentation/SymbolDocumentationProvider.cs b/src/Documentation/SymbolDocumentationProvider.cs index 3a90e8d489..468dac1eda 100644 --- a/src/Documentation/SymbolDocumentationProvider.cs +++ b/src/Documentation/SymbolDocumentationProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Documentation/SymbolTitleParts.cs b/src/Documentation/SymbolTitleParts.cs index d243ac1112..d36d100107 100644 --- a/src/Documentation/SymbolTitleParts.cs +++ b/src/Documentation/SymbolTitleParts.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Documentation/SymbolXmlDocumentation.cs b/src/Documentation/SymbolXmlDocumentation.cs index 5f41fe0c04..1b2458625b 100644 --- a/src/Documentation/SymbolXmlDocumentation.cs +++ b/src/Documentation/SymbolXmlDocumentation.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Documentation/TextUtility.cs b/src/Documentation/TextUtility.cs index f4e8a3c07e..dc38e122a7 100644 --- a/src/Documentation/TextUtility.cs +++ b/src/Documentation/TextUtility.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Text.RegularExpressions; diff --git a/src/Documentation/TypeDocumentationModel.cs b/src/Documentation/TypeDocumentationModel.cs index 20329d73b9..8a529a62c8 100644 --- a/src/Documentation/TypeDocumentationModel.cs +++ b/src/Documentation/TypeDocumentationModel.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Documentation/TypeDocumentationPartComparer.cs b/src/Documentation/TypeDocumentationPartComparer.cs index 1c35e80979..e07ddca3dd 100644 --- a/src/Documentation/TypeDocumentationPartComparer.cs +++ b/src/Documentation/TypeDocumentationPartComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Diagnostics; diff --git a/src/Documentation/TypeDocumentationParts.cs b/src/Documentation/TypeDocumentationParts.cs index e559181c5a..f4b45b10ae 100644 --- a/src/Documentation/TypeDocumentationParts.cs +++ b/src/Documentation/TypeDocumentationParts.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Documentation/TypeHierarchy.cs b/src/Documentation/TypeHierarchy.cs index 0820960275..f358fc4b2d 100644 --- a/src/Documentation/TypeHierarchy.cs +++ b/src/Documentation/TypeHierarchy.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Documentation/TypeHierarchyItem.cs b/src/Documentation/TypeHierarchyItem.cs index 6c316ee1cc..fe6f733251 100644 --- a/src/Documentation/TypeHierarchyItem.cs +++ b/src/Documentation/TypeHierarchyItem.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Diagnostics; diff --git a/src/Documentation/TypeKindComparer.cs b/src/Documentation/TypeKindComparer.cs index 355df08da4..b6ccb80397 100644 --- a/src/Documentation/TypeKindComparer.cs +++ b/src/Documentation/TypeKindComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/Documentation/TypeSymbolDisplayFormats.cs b/src/Documentation/TypeSymbolDisplayFormats.cs index 7418c51f82..1b7c669ffc 100644 --- a/src/Documentation/TypeSymbolDisplayFormats.cs +++ b/src/Documentation/TypeSymbolDisplayFormats.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.CodeAnalysis; diff --git a/src/Documentation/UrlProviders/CommonDocumentationUrlProvider.cs b/src/Documentation/UrlProviders/CommonDocumentationUrlProvider.cs index ba60a04e44..95cc3367bb 100644 --- a/src/Documentation/UrlProviders/CommonDocumentationUrlProvider.cs +++ b/src/Documentation/UrlProviders/CommonDocumentationUrlProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Documentation/UrlProviders/DefaultUrlSegmentProvider.cs b/src/Documentation/UrlProviders/DefaultUrlSegmentProvider.cs index 9896bf0cbd..786019ac73 100644 --- a/src/Documentation/UrlProviders/DefaultUrlSegmentProvider.cs +++ b/src/Documentation/UrlProviders/DefaultUrlSegmentProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Documentation/UrlProviders/DocumentationUrlProvider.cs b/src/Documentation/UrlProviders/DocumentationUrlProvider.cs index bc3046b811..78271ce891 100644 --- a/src/Documentation/UrlProviders/DocumentationUrlProvider.cs +++ b/src/Documentation/UrlProviders/DocumentationUrlProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Documentation/UrlProviders/DocusaurusDocumentationUrlProvider.cs b/src/Documentation/UrlProviders/DocusaurusDocumentationUrlProvider.cs index e8f688984d..a78896c0e3 100644 --- a/src/Documentation/UrlProviders/DocusaurusDocumentationUrlProvider.cs +++ b/src/Documentation/UrlProviders/DocusaurusDocumentationUrlProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; diff --git a/src/Documentation/UrlProviders/ExternalUrlProvider.cs b/src/Documentation/UrlProviders/ExternalUrlProvider.cs index 9d4857644a..34315b1445 100644 --- a/src/Documentation/UrlProviders/ExternalUrlProvider.cs +++ b/src/Documentation/UrlProviders/ExternalUrlProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using Microsoft.CodeAnalysis; diff --git a/src/Documentation/UrlProviders/GitHubDocumentationUrlProvider.cs b/src/Documentation/UrlProviders/GitHubDocumentationUrlProvider.cs index 763794f85e..a85cec7a8b 100644 --- a/src/Documentation/UrlProviders/GitHubDocumentationUrlProvider.cs +++ b/src/Documentation/UrlProviders/GitHubDocumentationUrlProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; diff --git a/src/Documentation/UrlProviders/MicrosoftDocsUrlProvider.cs b/src/Documentation/UrlProviders/MicrosoftDocsUrlProvider.cs index 43768fc538..4237a5a0e3 100644 --- a/src/Documentation/UrlProviders/MicrosoftDocsUrlProvider.cs +++ b/src/Documentation/UrlProviders/MicrosoftDocsUrlProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Text; diff --git a/src/Documentation/UrlProviders/SphinxDocumentationUrlProvider.cs b/src/Documentation/UrlProviders/SphinxDocumentationUrlProvider.cs index 4fbd39bcd1..70a59f52bc 100644 --- a/src/Documentation/UrlProviders/SphinxDocumentationUrlProvider.cs +++ b/src/Documentation/UrlProviders/SphinxDocumentationUrlProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Documentation/UrlProviders/UrlSegmentsProvider.cs b/src/Documentation/UrlProviders/UrlSegmentsProvider.cs index a4ad5c572e..b49e354a0e 100644 --- a/src/Documentation/UrlProviders/UrlSegmentsProvider.cs +++ b/src/Documentation/UrlProviders/UrlSegmentsProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Documentation/UrlProviders/WellKnownExternalUrlProviders.cs b/src/Documentation/UrlProviders/WellKnownExternalUrlProviders.cs index 2a2bc070b7..ef247e14a5 100644 --- a/src/Documentation/UrlProviders/WellKnownExternalUrlProviders.cs +++ b/src/Documentation/UrlProviders/WellKnownExternalUrlProviders.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Documentation; diff --git a/src/Documentation/WellKnownNames.cs b/src/Documentation/WellKnownNames.cs index 3f4455f66d..8c7ae5ba86 100644 --- a/src/Documentation/WellKnownNames.cs +++ b/src/Documentation/WellKnownNames.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Documentation; diff --git a/src/Documentation/WrapListOptions.cs b/src/Documentation/WrapListOptions.cs index 8d3ec8671f..24c92dfd01 100644 --- a/src/Documentation/WrapListOptions.cs +++ b/src/Documentation/WrapListOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Documentation/Xml/SymbolDefinitionXmlWriter.cs b/src/Documentation/Xml/SymbolDefinitionXmlWriter.cs index 7a96098963..5e24a3ddcd 100644 --- a/src/Documentation/Xml/SymbolDefinitionXmlWriter.cs +++ b/src/Documentation/Xml/SymbolDefinitionXmlWriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Documentation/XmlDocumentation.cs b/src/Documentation/XmlDocumentation.cs index 44a5fc4dd3..7a97879a44 100644 --- a/src/Documentation/XmlDocumentation.cs +++ b/src/Documentation/XmlDocumentation.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.IO; diff --git a/src/Formatting.Analyzers.CodeFixes/BaseCodeFixProvider.cs b/src/Formatting.Analyzers.CodeFixes/BaseCodeFixProvider.cs index 9a6a8f0200..9c62c0752c 100644 --- a/src/Formatting.Analyzers.CodeFixes/BaseCodeFixProvider.cs +++ b/src/Formatting.Analyzers.CodeFixes/BaseCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Roslynator.CodeFixes; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/AccessorDeclarationCodeFixProvider.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/AccessorDeclarationCodeFixProvider.cs index 76ce678da5..4756655c4a 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/AccessorDeclarationCodeFixProvider.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/AccessorDeclarationCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/AccessorListCodeFixProvider.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/AccessorListCodeFixProvider.cs index 5ec8b879ac..fa83337fff 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/AccessorListCodeFixProvider.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/AccessorListCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/AddBlankLineBeforeAndAfterUsingDirectiveListCodeFixProvider.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/AddBlankLineBeforeAndAfterUsingDirectiveListCodeFixProvider.cs index e210a5b5f4..b71c824403 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/AddBlankLineBeforeAndAfterUsingDirectiveListCodeFixProvider.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/AddBlankLineBeforeAndAfterUsingDirectiveListCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/BinaryExpressionCodeFixProvider.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/BinaryExpressionCodeFixProvider.cs index 194fab8a5b..d4354b645a 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/BinaryExpressionCodeFixProvider.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/BinaryExpressionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/BlankLineBetweenDeclarationsCodeFixProvider.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/BlankLineBetweenDeclarationsCodeFixProvider.cs index fff06c9f4c..e4c8766723 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/BlankLineBetweenDeclarationsCodeFixProvider.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/BlankLineBetweenDeclarationsCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/BlockCodeFixProvider.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/BlockCodeFixProvider.cs index cdec048e34..d0f3a02c0b 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/BlockCodeFixProvider.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/BlockCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/CodeFixHelpers.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/CodeFixHelpers.cs index d2f9102063..9ee196f3ca 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/CodeFixHelpers.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/CodeFixHelpers.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/CodeFixTitles.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/CodeFixTitles.cs index 4e8fa92f09..5d6a4779bf 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/CodeFixTitles.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/CodeFixTitles.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Formatting.CodeFixes.CSharp; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/CompilationUnitCodeFixProvider.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/CompilationUnitCodeFixProvider.cs index 130dc0acd3..940abb1d7d 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/CompilationUnitCodeFixProvider.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/CompilationUnitCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/ConditionalAccessExpressionCodeFixProvider.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/ConditionalAccessExpressionCodeFixProvider.cs index 847c919409..3f02276a2b 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/ConditionalAccessExpressionCodeFixProvider.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/ConditionalAccessExpressionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/DirectiveTriviaCodeFixProvider.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/DirectiveTriviaCodeFixProvider.cs index 3c2c5ab1e0..6c8c833846 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/DirectiveTriviaCodeFixProvider.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/DirectiveTriviaCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/EnumDeclarationCodeFixProvider.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/EnumDeclarationCodeFixProvider.cs index ee4e7e47e1..fc7f2e5be9 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/EnumDeclarationCodeFixProvider.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/EnumDeclarationCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/FileScopedNamespaceDeclarationCodeFixProvider.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/FileScopedNamespaceDeclarationCodeFixProvider.cs index 2fa311958d..e44bbdae98 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/FileScopedNamespaceDeclarationCodeFixProvider.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/FileScopedNamespaceDeclarationCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/FixFormattingOfBinaryExpressionChainCodeFixProvider.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/FixFormattingOfBinaryExpressionChainCodeFixProvider.cs index eb5f8a210b..bc57de4c1b 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/FixFormattingOfBinaryExpressionChainCodeFixProvider.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/FixFormattingOfBinaryExpressionChainCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/FixFormattingOfCallChainCodeFixProvider.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/FixFormattingOfCallChainCodeFixProvider.cs index e612d9b55a..fe27e84bd0 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/FixFormattingOfCallChainCodeFixProvider.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/FixFormattingOfCallChainCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/FixFormattingOfListCodeFixProvider.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/FixFormattingOfListCodeFixProvider.cs index 24743b5691..1c97bd4e7e 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/FixFormattingOfListCodeFixProvider.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/FixFormattingOfListCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/InitializerCodeFixProvider.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/InitializerCodeFixProvider.cs index 33f749255b..d163ac9412 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/InitializerCodeFixProvider.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/InitializerCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/LineIsTooLong/LineIsTooLongCodeFixProvider.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/LineIsTooLong/LineIsTooLongCodeFixProvider.cs index 2f77ad0ca9..f25d27fe77 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/LineIsTooLong/LineIsTooLongCodeFixProvider.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/LineIsTooLong/LineIsTooLongCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/LineIsTooLong/SyntaxGroup.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/LineIsTooLong/SyntaxGroup.cs index 6edea58cab..5f0e94e750 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/LineIsTooLong/SyntaxGroup.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/LineIsTooLong/SyntaxGroup.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Formatting.CodeFixes.LineIsTooLong; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/LineIsTooLong/SyntaxGroupMap.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/LineIsTooLong/SyntaxGroupMap.cs index ccd707efbb..31658d8ff1 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/LineIsTooLong/SyntaxGroupMap.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/LineIsTooLong/SyntaxGroupMap.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/LineIsTooLong/WrapLineNodeFinder.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/LineIsTooLong/WrapLineNodeFinder.cs index 2a20e211c9..e68ea73937 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/LineIsTooLong/WrapLineNodeFinder.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/LineIsTooLong/WrapLineNodeFinder.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/ListFixMode.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/ListFixMode.cs index 4a0a9c6eb3..cf4feb4238 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/ListFixMode.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/ListFixMode.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Formatting.CodeFixes.CSharp; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/MemberDeclarationCodeFixProvider.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/MemberDeclarationCodeFixProvider.cs index 9cebc5b5bc..a411e28cae 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/MemberDeclarationCodeFixProvider.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/MemberDeclarationCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/NormalizeWhitespaceAtEndOfFileCodeFixProvider.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/NormalizeWhitespaceAtEndOfFileCodeFixProvider.cs index 30e9ef6d41..7cc252c49b 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/NormalizeWhitespaceAtEndOfFileCodeFixProvider.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/NormalizeWhitespaceAtEndOfFileCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/ReplaceTabWithSpacesCodeFixProvider.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/ReplaceTabWithSpacesCodeFixProvider.cs index 773d832a40..da36f52390 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/ReplaceTabWithSpacesCodeFixProvider.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/ReplaceTabWithSpacesCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/StatementCodeFixProvider.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/StatementCodeFixProvider.cs index b4d456fb02..d25ede471c 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/StatementCodeFixProvider.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/StatementCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/SwitchSectionCodeFixProvider.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/SwitchSectionCodeFixProvider.cs index f0d765c240..ac6a01ed9b 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/SwitchSectionCodeFixProvider.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/SwitchSectionCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/SyntaxTokenCodeFixProvider.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/SyntaxTokenCodeFixProvider.cs index 5cb980f3c4..76398a66ad 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/SyntaxTokenCodeFixProvider.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/SyntaxTokenCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/SyntaxTriviaCodeFixProvider.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/SyntaxTriviaCodeFixProvider.cs index 84d36c8a2e..332ad86ef1 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/SyntaxTriviaCodeFixProvider.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/SyntaxTriviaCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Formatting.Analyzers.CodeFixes/CSharp/TypeParameterConstraintClauseSyntaxCodeFixProvider.cs b/src/Formatting.Analyzers.CodeFixes/CSharp/TypeParameterConstraintClauseSyntaxCodeFixProvider.cs index 1d6d07bc17..d22e663ac8 100644 --- a/src/Formatting.Analyzers.CodeFixes/CSharp/TypeParameterConstraintClauseSyntaxCodeFixProvider.cs +++ b/src/Formatting.Analyzers.CodeFixes/CSharp/TypeParameterConstraintClauseSyntaxCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Formatting.Analyzers.CodeFixes/FormattingVerifier.cs b/src/Formatting.Analyzers.CodeFixes/FormattingVerifier.cs index 7d6ef1de81..589d847245 100644 --- a/src/Formatting.Analyzers.CodeFixes/FormattingVerifier.cs +++ b/src/Formatting.Analyzers.CodeFixes/FormattingVerifier.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Diagnostics; diff --git a/src/Formatting.Analyzers.CodeFixes/NewLineCodeFixProvider.cs b/src/Formatting.Analyzers.CodeFixes/NewLineCodeFixProvider.cs index 2787899d20..dcdd235f63 100644 --- a/src/Formatting.Analyzers.CodeFixes/NewLineCodeFixProvider.cs +++ b/src/Formatting.Analyzers.CodeFixes/NewLineCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Composition; diff --git a/src/Formatting.Analyzers.CodeFixes/SyntaxTriviaExtensions.cs b/src/Formatting.Analyzers.CodeFixes/SyntaxTriviaExtensions.cs index 50eb3bd85c..10a0ef2994 100644 --- a/src/Formatting.Analyzers.CodeFixes/SyntaxTriviaExtensions.cs +++ b/src/Formatting.Analyzers.CodeFixes/SyntaxTriviaExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/AccessorListAnalyzer.cs b/src/Formatting.Analyzers/CSharp/AccessorListAnalyzer.cs index 496645ec5f..2506ab714d 100644 --- a/src/Formatting.Analyzers/CSharp/AccessorListAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/AccessorListAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Formatting.Analyzers/CSharp/AddBlankLineAfterEmbeddedStatementAnalyzer.cs b/src/Formatting.Analyzers/CSharp/AddBlankLineAfterEmbeddedStatementAnalyzer.cs index 4c73ab91f6..24c2ed90b9 100644 --- a/src/Formatting.Analyzers/CSharp/AddBlankLineAfterEmbeddedStatementAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/AddBlankLineAfterEmbeddedStatementAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Formatting.Analyzers/CSharp/AddBlankLineAfterRegionDirectiveAnalyzer.cs b/src/Formatting.Analyzers/CSharp/AddBlankLineAfterRegionDirectiveAnalyzer.cs index 392d66ee42..9919d0d1fd 100644 --- a/src/Formatting.Analyzers/CSharp/AddBlankLineAfterRegionDirectiveAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/AddBlankLineAfterRegionDirectiveAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/AddBlankLineAfterTopCommentAnalyzer.cs b/src/Formatting.Analyzers/CSharp/AddBlankLineAfterTopCommentAnalyzer.cs index ee388079e9..d7177819f9 100644 --- a/src/Formatting.Analyzers/CSharp/AddBlankLineAfterTopCommentAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/AddBlankLineAfterTopCommentAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/AddBlankLineAfterUsingDirectiveListAnalyzer.cs b/src/Formatting.Analyzers/CSharp/AddBlankLineAfterUsingDirectiveListAnalyzer.cs index 8c23743b08..aa6ba23163 100644 --- a/src/Formatting.Analyzers/CSharp/AddBlankLineAfterUsingDirectiveListAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/AddBlankLineAfterUsingDirectiveListAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/AddBlankLineBeforeEndRegionDirectiveAnalyzer.cs b/src/Formatting.Analyzers/CSharp/AddBlankLineBeforeEndRegionDirectiveAnalyzer.cs index 544935c096..f80f578414 100644 --- a/src/Formatting.Analyzers/CSharp/AddBlankLineBeforeEndRegionDirectiveAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/AddBlankLineBeforeEndRegionDirectiveAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/AddBlankLineBeforeTopDeclarationAnalyzer.cs b/src/Formatting.Analyzers/CSharp/AddBlankLineBeforeTopDeclarationAnalyzer.cs index ab90aa681e..7ffe5653cc 100644 --- a/src/Formatting.Analyzers/CSharp/AddBlankLineBeforeTopDeclarationAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/AddBlankLineBeforeTopDeclarationAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/AddBlankLineBeforeUsingDirectiveListAnalyzer.cs b/src/Formatting.Analyzers/CSharp/AddBlankLineBeforeUsingDirectiveListAnalyzer.cs index 4c1b333d7f..4d513fa7a8 100644 --- a/src/Formatting.Analyzers/CSharp/AddBlankLineBeforeUsingDirectiveListAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/AddBlankLineBeforeUsingDirectiveListAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/AddBlankLineBetweenClosingBraceAndNextStatementAnalyzer.cs b/src/Formatting.Analyzers/CSharp/AddBlankLineBetweenClosingBraceAndNextStatementAnalyzer.cs index 8d123bc255..bad7322848 100644 --- a/src/Formatting.Analyzers/CSharp/AddBlankLineBetweenClosingBraceAndNextStatementAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/AddBlankLineBetweenClosingBraceAndNextStatementAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Formatting.Analyzers/CSharp/AddBlankLineBetweenSwitchSectionsAnalyzer.cs b/src/Formatting.Analyzers/CSharp/AddBlankLineBetweenSwitchSectionsAnalyzer.cs index 98ad910c66..7529612c47 100644 --- a/src/Formatting.Analyzers/CSharp/AddBlankLineBetweenSwitchSectionsAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/AddBlankLineBetweenSwitchSectionsAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/AddNewLineAfterSwitchLabelAnalyzer.cs b/src/Formatting.Analyzers/CSharp/AddNewLineAfterSwitchLabelAnalyzer.cs index 9b7d8f8b73..43e1f049cb 100644 --- a/src/Formatting.Analyzers/CSharp/AddNewLineAfterSwitchLabelAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/AddNewLineAfterSwitchLabelAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/AddNewLineBeforeEmbeddedStatementAnalyzer.cs b/src/Formatting.Analyzers/CSharp/AddNewLineBeforeEmbeddedStatementAnalyzer.cs index 6b30983544..e293e3e3d8 100644 --- a/src/Formatting.Analyzers/CSharp/AddNewLineBeforeEmbeddedStatementAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/AddNewLineBeforeEmbeddedStatementAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/AddNewLineBeforeStatementAnalyzer.cs b/src/Formatting.Analyzers/CSharp/AddNewLineBeforeStatementAnalyzer.cs index 932e2f4a99..59aa63cdd0 100644 --- a/src/Formatting.Analyzers/CSharp/AddNewLineBeforeStatementAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/AddNewLineBeforeStatementAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/AddOrRemoveNewLineBeforeWhileInDoStatementAnalyzer.cs b/src/Formatting.Analyzers/CSharp/AddOrRemoveNewLineBeforeWhileInDoStatementAnalyzer.cs index 82a23287f5..5b5d5e294e 100644 --- a/src/Formatting.Analyzers/CSharp/AddOrRemoveNewLineBeforeWhileInDoStatementAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/AddOrRemoveNewLineBeforeWhileInDoStatementAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/AnalyzerOptionIsObsoleteAnalyzer.cs b/src/Formatting.Analyzers/CSharp/AnalyzerOptionIsObsoleteAnalyzer.cs index 41ebc01fbc..d1f5573dd9 100644 --- a/src/Formatting.Analyzers/CSharp/AnalyzerOptionIsObsoleteAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/AnalyzerOptionIsObsoleteAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Formatting.Analyzers/CSharp/BaseDiagnosticAnalyzer.cs b/src/Formatting.Analyzers/CSharp/BaseDiagnosticAnalyzer.cs index 96f5a0cf19..80fb87f268 100644 --- a/src/Formatting.Analyzers/CSharp/BaseDiagnosticAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/BaseDiagnosticAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using System.Linq; diff --git a/src/Formatting.Analyzers/CSharp/BlankLineAfterFileScopedNamespaceDeclarationAnalyzer.cs b/src/Formatting.Analyzers/CSharp/BlankLineAfterFileScopedNamespaceDeclarationAnalyzer.cs index bae7536548..e17ab0c758 100644 --- a/src/Formatting.Analyzers/CSharp/BlankLineAfterFileScopedNamespaceDeclarationAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/BlankLineAfterFileScopedNamespaceDeclarationAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/BlankLineBetweenAccessorsAnalyzer.cs b/src/Formatting.Analyzers/CSharp/BlankLineBetweenAccessorsAnalyzer.cs index 290e11ae66..ca70103e36 100644 --- a/src/Formatting.Analyzers/CSharp/BlankLineBetweenAccessorsAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/BlankLineBetweenAccessorsAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Diagnostics; diff --git a/src/Formatting.Analyzers/CSharp/BlankLineBetweenDeclarationsAnalyzer.cs b/src/Formatting.Analyzers/CSharp/BlankLineBetweenDeclarationsAnalyzer.cs index 9bd2414c2a..ba53864f8a 100644 --- a/src/Formatting.Analyzers/CSharp/BlankLineBetweenDeclarationsAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/BlankLineBetweenDeclarationsAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Formatting.Analyzers/CSharp/BlankLineBetweenUsingDirectivesAnalyzer.cs b/src/Formatting.Analyzers/CSharp/BlankLineBetweenUsingDirectivesAnalyzer.cs index 1ead401d47..a085f7dcab 100644 --- a/src/Formatting.Analyzers/CSharp/BlankLineBetweenUsingDirectivesAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/BlankLineBetweenUsingDirectivesAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Formatting.Analyzers/CSharp/DiagnosticIdentifiers.Deprecated.Generated.cs b/src/Formatting.Analyzers/CSharp/DiagnosticIdentifiers.Deprecated.Generated.cs index be43d3894c..5e5d893236 100644 --- a/src/Formatting.Analyzers/CSharp/DiagnosticIdentifiers.Deprecated.Generated.cs +++ b/src/Formatting.Analyzers/CSharp/DiagnosticIdentifiers.Deprecated.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/Formatting.Analyzers/CSharp/DiagnosticIdentifiers.Generated.cs b/src/Formatting.Analyzers/CSharp/DiagnosticIdentifiers.Generated.cs index 65967216a0..a40b11bcc0 100644 --- a/src/Formatting.Analyzers/CSharp/DiagnosticIdentifiers.Generated.cs +++ b/src/Formatting.Analyzers/CSharp/DiagnosticIdentifiers.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/Formatting.Analyzers/CSharp/DiagnosticRules.Deprecated.Generated.cs b/src/Formatting.Analyzers/CSharp/DiagnosticRules.Deprecated.Generated.cs index 7610b037c1..b0a4abde20 100644 --- a/src/Formatting.Analyzers/CSharp/DiagnosticRules.Deprecated.Generated.cs +++ b/src/Formatting.Analyzers/CSharp/DiagnosticRules.Deprecated.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/Formatting.Analyzers/CSharp/DiagnosticRules.Generated.cs b/src/Formatting.Analyzers/CSharp/DiagnosticRules.Generated.cs index 65aa1ccdc3..21f3f6ba1c 100644 --- a/src/Formatting.Analyzers/CSharp/DiagnosticRules.Generated.cs +++ b/src/Formatting.Analyzers/CSharp/DiagnosticRules.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/Formatting.Analyzers/CSharp/FixFormattingOfBinaryExpressionChainAnalyzer.cs b/src/Formatting.Analyzers/CSharp/FixFormattingOfBinaryExpressionChainAnalyzer.cs index 155d0a1847..265876fcf6 100644 --- a/src/Formatting.Analyzers/CSharp/FixFormattingOfBinaryExpressionChainAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/FixFormattingOfBinaryExpressionChainAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/FixFormattingOfCallChainAnalyzer.cs b/src/Formatting.Analyzers/CSharp/FixFormattingOfCallChainAnalyzer.cs index 3f7c0bc474..f062572c57 100644 --- a/src/Formatting.Analyzers/CSharp/FixFormattingOfCallChainAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/FixFormattingOfCallChainAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/FixFormattingOfListAnalyzer.cs b/src/Formatting.Analyzers/CSharp/FixFormattingOfListAnalyzer.cs index 46cbbe1c2b..2096780c44 100644 --- a/src/Formatting.Analyzers/CSharp/FixFormattingOfListAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/FixFormattingOfListAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Formatting.Analyzers/CSharp/FormatAccessorBracesAnalyzer.cs b/src/Formatting.Analyzers/CSharp/FormatAccessorBracesAnalyzer.cs index e11dca58da..1073331568 100644 --- a/src/Formatting.Analyzers/CSharp/FormatAccessorBracesAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/FormatAccessorBracesAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Formatting.Analyzers/CSharp/FormatBlockBracesAnalyzer.cs b/src/Formatting.Analyzers/CSharp/FormatBlockBracesAnalyzer.cs index 0c7814d854..c08a5f662c 100644 --- a/src/Formatting.Analyzers/CSharp/FormatBlockBracesAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/FormatBlockBracesAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/FormatTypeDeclarationBracesAnalyzer.cs b/src/Formatting.Analyzers/CSharp/FormatTypeDeclarationBracesAnalyzer.cs index 7e736283d1..e0737b578e 100644 --- a/src/Formatting.Analyzers/CSharp/FormatTypeDeclarationBracesAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/FormatTypeDeclarationBracesAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/FormattingAnalysis.cs b/src/Formatting.Analyzers/CSharp/FormattingAnalysis.cs index 525a4426cc..43dc53941f 100644 --- a/src/Formatting.Analyzers/CSharp/FormattingAnalysis.cs +++ b/src/Formatting.Analyzers/CSharp/FormattingAnalysis.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Formatting.Analyzers/CSharp/FormattingSuggestion.cs b/src/Formatting.Analyzers/CSharp/FormattingSuggestion.cs index ef074195d7..194e9c29cd 100644 --- a/src/Formatting.Analyzers/CSharp/FormattingSuggestion.cs +++ b/src/Formatting.Analyzers/CSharp/FormattingSuggestion.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Formatting.CSharp; diff --git a/src/Formatting.Analyzers/CSharp/LineIsTooLongAnalyzer.cs b/src/Formatting.Analyzers/CSharp/LineIsTooLongAnalyzer.cs index eed8b677c7..aaf06c3efe 100644 --- a/src/Formatting.Analyzers/CSharp/LineIsTooLongAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/LineIsTooLongAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/NormalizeWhitespaceAtBeginningOfFileAnalyzer.cs b/src/Formatting.Analyzers/CSharp/NormalizeWhitespaceAtBeginningOfFileAnalyzer.cs index bf4e9b0391..52b0b4c867 100644 --- a/src/Formatting.Analyzers/CSharp/NormalizeWhitespaceAtBeginningOfFileAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/NormalizeWhitespaceAtBeginningOfFileAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/NormalizeWhitespaceAtEndOfFileAnalyzer.cs b/src/Formatting.Analyzers/CSharp/NormalizeWhitespaceAtEndOfFileAnalyzer.cs index eb8588e08f..eb769cf0ec 100644 --- a/src/Formatting.Analyzers/CSharp/NormalizeWhitespaceAtEndOfFileAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/NormalizeWhitespaceAtEndOfFileAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Diagnostics; diff --git a/src/Formatting.Analyzers/CSharp/PlaceNewLineAfterOrBeforeArrowTokenAnalyzer.cs b/src/Formatting.Analyzers/CSharp/PlaceNewLineAfterOrBeforeArrowTokenAnalyzer.cs index d83a861f57..6b57fc63cd 100644 --- a/src/Formatting.Analyzers/CSharp/PlaceNewLineAfterOrBeforeArrowTokenAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/PlaceNewLineAfterOrBeforeArrowTokenAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/PlaceNewLineAfterOrBeforeBinaryOperatorAnalyzer.cs b/src/Formatting.Analyzers/CSharp/PlaceNewLineAfterOrBeforeBinaryOperatorAnalyzer.cs index 8417c921b3..57ef333619 100644 --- a/src/Formatting.Analyzers/CSharp/PlaceNewLineAfterOrBeforeBinaryOperatorAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/PlaceNewLineAfterOrBeforeBinaryOperatorAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/PlaceNewLineAfterOrBeforeConditionalOperatorAnalyzer.cs b/src/Formatting.Analyzers/CSharp/PlaceNewLineAfterOrBeforeConditionalOperatorAnalyzer.cs index 842c07c743..aa6442d2e5 100644 --- a/src/Formatting.Analyzers/CSharp/PlaceNewLineAfterOrBeforeConditionalOperatorAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/PlaceNewLineAfterOrBeforeConditionalOperatorAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/PlaceNewLineAfterOrBeforeEqualsTokenAnalyzer.cs b/src/Formatting.Analyzers/CSharp/PlaceNewLineAfterOrBeforeEqualsTokenAnalyzer.cs index 874c68e7f8..9131e24f99 100644 --- a/src/Formatting.Analyzers/CSharp/PlaceNewLineAfterOrBeforeEqualsTokenAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/PlaceNewLineAfterOrBeforeEqualsTokenAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/PlaceNewLineAfterOrBeforeNullConditionalOperatorAnalyzer.cs b/src/Formatting.Analyzers/CSharp/PlaceNewLineAfterOrBeforeNullConditionalOperatorAnalyzer.cs index 657b6488c0..eeaa4f26a5 100644 --- a/src/Formatting.Analyzers/CSharp/PlaceNewLineAfterOrBeforeNullConditionalOperatorAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/PlaceNewLineAfterOrBeforeNullConditionalOperatorAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/PutAttributeListOnItsOwnLineAnalyzer.cs b/src/Formatting.Analyzers/CSharp/PutAttributeListOnItsOwnLineAnalyzer.cs index 1de4d73ac9..d7b5083657 100644 --- a/src/Formatting.Analyzers/CSharp/PutAttributeListOnItsOwnLineAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/PutAttributeListOnItsOwnLineAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/PutConstructorInitializerOnItsOwnLineAnalyzer.cs b/src/Formatting.Analyzers/CSharp/PutConstructorInitializerOnItsOwnLineAnalyzer.cs index daacc59aeb..3b0713678c 100644 --- a/src/Formatting.Analyzers/CSharp/PutConstructorInitializerOnItsOwnLineAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/PutConstructorInitializerOnItsOwnLineAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/PutEnumMemberOnItsOwnLineAnalyzer.cs b/src/Formatting.Analyzers/CSharp/PutEnumMemberOnItsOwnLineAnalyzer.cs index af9dfc94a6..940ce68ebc 100644 --- a/src/Formatting.Analyzers/CSharp/PutEnumMemberOnItsOwnLineAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/PutEnumMemberOnItsOwnLineAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/PutInitializerOnSingleLineAnalyzer.cs b/src/Formatting.Analyzers/CSharp/PutInitializerOnSingleLineAnalyzer.cs index b9a07e9c22..51ceb4754d 100644 --- a/src/Formatting.Analyzers/CSharp/PutInitializerOnSingleLineAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/PutInitializerOnSingleLineAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/PutTypeParameterConstraintOnItsOwnLineAnalyzer.cs b/src/Formatting.Analyzers/CSharp/PutTypeParameterConstraintOnItsOwnLineAnalyzer.cs index 7b56f5b05a..23c8a2d501 100644 --- a/src/Formatting.Analyzers/CSharp/PutTypeParameterConstraintOnItsOwnLineAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/PutTypeParameterConstraintOnItsOwnLineAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Formatting.Analyzers/CSharp/RemoveNewLineBeforeBaseListAnalyzer.cs b/src/Formatting.Analyzers/CSharp/RemoveNewLineBeforeBaseListAnalyzer.cs index bef785ff69..328e9296eb 100644 --- a/src/Formatting.Analyzers/CSharp/RemoveNewLineBeforeBaseListAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/RemoveNewLineBeforeBaseListAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/RemoveNewLineBetweenIfKeywordAndElseKeywordAnalyzer.cs b/src/Formatting.Analyzers/CSharp/RemoveNewLineBetweenIfKeywordAndElseKeywordAnalyzer.cs index edc55f9eba..e2aa8a97c7 100644 --- a/src/Formatting.Analyzers/CSharp/RemoveNewLineBetweenIfKeywordAndElseKeywordAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/RemoveNewLineBetweenIfKeywordAndElseKeywordAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/CSharp/RequiredConfigOptionNotSetAnalyzer.cs b/src/Formatting.Analyzers/CSharp/RequiredConfigOptionNotSetAnalyzer.cs index a10ac1ac2f..78a95e86bf 100644 --- a/src/Formatting.Analyzers/CSharp/RequiredConfigOptionNotSetAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/RequiredConfigOptionNotSetAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Formatting.Analyzers/CSharp/UseSpacesInsteadOfTabAnalyzer.cs b/src/Formatting.Analyzers/CSharp/UseSpacesInsteadOfTabAnalyzer.cs index 21ac194600..4db7ea1461 100644 --- a/src/Formatting.Analyzers/CSharp/UseSpacesInsteadOfTabAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/UseSpacesInsteadOfTabAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Formatting.Analyzers/CSharp/WrapAndIndentEachNodeInListAnalyzer.cs b/src/Formatting.Analyzers/CSharp/WrapAndIndentEachNodeInListAnalyzer.cs index fa4b832cdf..e72c585c7e 100644 --- a/src/Formatting.Analyzers/CSharp/WrapAndIndentEachNodeInListAnalyzer.cs +++ b/src/Formatting.Analyzers/CSharp/WrapAndIndentEachNodeInListAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/UseCarriageReturnAndLinefeedAsNewLineAnalyzer.cs b/src/Formatting.Analyzers/UseCarriageReturnAndLinefeedAsNewLineAnalyzer.cs index 54aff76699..d78c3d6208 100644 --- a/src/Formatting.Analyzers/UseCarriageReturnAndLinefeedAsNewLineAnalyzer.cs +++ b/src/Formatting.Analyzers/UseCarriageReturnAndLinefeedAsNewLineAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Formatting.Analyzers/UseLinefeedAsNewLineAnalyzer.cs b/src/Formatting.Analyzers/UseLinefeedAsNewLineAnalyzer.cs index f7209e17fb..7b47435172 100644 --- a/src/Formatting.Analyzers/UseLinefeedAsNewLineAnalyzer.cs +++ b/src/Formatting.Analyzers/UseLinefeedAsNewLineAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/RefactoringDescriptorComparer.cs b/src/Refactorings/CSharp/RefactoringDescriptorComparer.cs index a0e1f7e52f..fdbc5235d6 100644 --- a/src/Refactorings/CSharp/RefactoringDescriptorComparer.cs +++ b/src/Refactorings/CSharp/RefactoringDescriptorComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/Refactorings/CSharp/RefactoringDescriptors.Generated.cs b/src/Refactorings/CSharp/RefactoringDescriptors.Generated.cs index 87d687f012..17985df391 100644 --- a/src/Refactorings/CSharp/RefactoringDescriptors.Generated.cs +++ b/src/Refactorings/CSharp/RefactoringDescriptors.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/Refactorings/CSharp/RefactoringIdentifiers.Deprecated.Generated.cs b/src/Refactorings/CSharp/RefactoringIdentifiers.Deprecated.Generated.cs index 29a4df267c..2881a90178 100644 --- a/src/Refactorings/CSharp/RefactoringIdentifiers.Deprecated.Generated.cs +++ b/src/Refactorings/CSharp/RefactoringIdentifiers.Deprecated.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/Refactorings/CSharp/RefactoringIdentifiers.Deprecated.cs b/src/Refactorings/CSharp/RefactoringIdentifiers.Deprecated.cs index 001dde4c65..20d2076619 100644 --- a/src/Refactorings/CSharp/RefactoringIdentifiers.Deprecated.cs +++ b/src/Refactorings/CSharp/RefactoringIdentifiers.Deprecated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings; diff --git a/src/Refactorings/CSharp/RefactoringIdentifiers.Generated.cs b/src/Refactorings/CSharp/RefactoringIdentifiers.Generated.cs index 4e973c3328..88b2498684 100644 --- a/src/Refactorings/CSharp/RefactoringIdentifiers.Generated.cs +++ b/src/Refactorings/CSharp/RefactoringIdentifiers.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/Refactorings/CSharp/RefactoringIdentifiers.cs b/src/Refactorings/CSharp/RefactoringIdentifiers.cs index 75f7cb05f1..ca5d558f76 100644 --- a/src/Refactorings/CSharp/RefactoringIdentifiers.cs +++ b/src/Refactorings/CSharp/RefactoringIdentifiers.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings; diff --git a/src/Refactorings/CSharp/Refactorings/AccessModifierRefactoring.cs b/src/Refactorings/CSharp/Refactorings/AccessModifierRefactoring.cs index a448f28ac9..92d6be3ec7 100644 --- a/src/Refactorings/CSharp/Refactorings/AccessModifierRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/AccessModifierRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/AccessorDeclarationRefactoring.cs b/src/Refactorings/CSharp/Refactorings/AccessorDeclarationRefactoring.cs index 59b2d4f321..7d410c57d4 100644 --- a/src/Refactorings/CSharp/Refactorings/AccessorDeclarationRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/AccessorDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/AddAllPropertiesToInitializerRefactoring.cs b/src/Refactorings/CSharp/Refactorings/AddAllPropertiesToInitializerRefactoring.cs index 17db7ad016..6ef99f45c3 100644 --- a/src/Refactorings/CSharp/Refactorings/AddAllPropertiesToInitializerRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/AddAllPropertiesToInitializerRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Refactorings/CSharp/Refactorings/AddBracesRefactoring.cs b/src/Refactorings/CSharp/Refactorings/AddBracesRefactoring.cs index e29bba2bce..cf30c26501 100644 --- a/src/Refactorings/CSharp/Refactorings/AddBracesRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/AddBracesRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Refactorings/CSharp/Refactorings/AddBracesToSwitchSectionsRefactoring.cs b/src/Refactorings/CSharp/Refactorings/AddBracesToSwitchSectionsRefactoring.cs index b1cf1058aa..00000a310a 100644 --- a/src/Refactorings/CSharp/Refactorings/AddBracesToSwitchSectionsRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/AddBracesToSwitchSectionsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Refactorings/CSharp/Refactorings/AddDefaultValueToParameterRefactoring.cs b/src/Refactorings/CSharp/Refactorings/AddDefaultValueToParameterRefactoring.cs index 8a4773385e..dd7e91b216 100644 --- a/src/Refactorings/CSharp/Refactorings/AddDefaultValueToParameterRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/AddDefaultValueToParameterRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/AddEmptyLineBetweenDeclarationsRefactoring.cs b/src/Refactorings/CSharp/Refactorings/AddEmptyLineBetweenDeclarationsRefactoring.cs index c998c4eaa1..5f301866f9 100644 --- a/src/Refactorings/CSharp/Refactorings/AddEmptyLineBetweenDeclarationsRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/AddEmptyLineBetweenDeclarationsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/AddGenericParameterToDeclarationRefactoring.cs b/src/Refactorings/CSharp/Refactorings/AddGenericParameterToDeclarationRefactoring.cs index 8ef25aa957..7097abe8db 100644 --- a/src/Refactorings/CSharp/Refactorings/AddGenericParameterToDeclarationRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/AddGenericParameterToDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/AddMemberToInterfaceRefactoring.cs b/src/Refactorings/CSharp/Refactorings/AddMemberToInterfaceRefactoring.cs index 85916c72ad..18956e3747 100644 --- a/src/Refactorings/CSharp/Refactorings/AddMemberToInterfaceRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/AddMemberToInterfaceRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Refactorings/CSharp/Refactorings/AddMissingCasesToSwitchStatementRefactoring.cs b/src/Refactorings/CSharp/Refactorings/AddMissingCasesToSwitchStatementRefactoring.cs index 02f3a29e9f..aed4397c39 100644 --- a/src/Refactorings/CSharp/Refactorings/AddMissingCasesToSwitchStatementRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/AddMissingCasesToSwitchStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Refactorings/CSharp/Refactorings/AddOrRemoveParameterName/AddArgumentNameRefactoring.cs b/src/Refactorings/CSharp/Refactorings/AddOrRemoveParameterName/AddArgumentNameRefactoring.cs index 6e12491e92..4debf727a3 100644 --- a/src/Refactorings/CSharp/Refactorings/AddOrRemoveParameterName/AddArgumentNameRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/AddOrRemoveParameterName/AddArgumentNameRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/AddOrRemoveParameterName/AddOrRemoveArgumentNameRefactoring.cs b/src/Refactorings/CSharp/Refactorings/AddOrRemoveParameterName/AddOrRemoveArgumentNameRefactoring.cs index 084142d351..3dcfb64847 100644 --- a/src/Refactorings/CSharp/Refactorings/AddOrRemoveParameterName/AddOrRemoveArgumentNameRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/AddOrRemoveParameterName/AddOrRemoveArgumentNameRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/AddOrRemoveParameterName/AddParameterNameRewriter.cs b/src/Refactorings/CSharp/Refactorings/AddOrRemoveParameterName/AddParameterNameRewriter.cs index 96a883c75c..f45f20c584 100644 --- a/src/Refactorings/CSharp/Refactorings/AddOrRemoveParameterName/AddParameterNameRewriter.cs +++ b/src/Refactorings/CSharp/Refactorings/AddOrRemoveParameterName/AddParameterNameRewriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/AddOrRemoveParameterName/RemoveArgumentNameRefactoring.cs b/src/Refactorings/CSharp/Refactorings/AddOrRemoveParameterName/RemoveArgumentNameRefactoring.cs index 4f442497a8..8d781c5ee0 100644 --- a/src/Refactorings/CSharp/Refactorings/AddOrRemoveParameterName/RemoveArgumentNameRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/AddOrRemoveParameterName/RemoveArgumentNameRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/AddOrRemoveParameterName/RemoveParameterNameRewriter.cs b/src/Refactorings/CSharp/Refactorings/AddOrRemoveParameterName/RemoveParameterNameRewriter.cs index dd063b55ff..b4b9c180e5 100644 --- a/src/Refactorings/CSharp/Refactorings/AddOrRemoveParameterName/RemoveParameterNameRewriter.cs +++ b/src/Refactorings/CSharp/Refactorings/AddOrRemoveParameterName/RemoveParameterNameRewriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/AddOrRenameParameterRefactoring.cs b/src/Refactorings/CSharp/Refactorings/AddOrRenameParameterRefactoring.cs index cbb75d73b0..14f9c1f321 100644 --- a/src/Refactorings/CSharp/Refactorings/AddOrRenameParameterRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/AddOrRenameParameterRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/AddUsingDirectiveRefactoring.cs b/src/Refactorings/CSharp/Refactorings/AddUsingDirectiveRefactoring.cs index c47a9004b1..62467cd6cd 100644 --- a/src/Refactorings/CSharp/Refactorings/AddUsingDirectiveRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/AddUsingDirectiveRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/AddUsingStaticDirectiveRefactoring.cs b/src/Refactorings/CSharp/Refactorings/AddUsingStaticDirectiveRefactoring.cs index b35758845b..2756876c6d 100644 --- a/src/Refactorings/CSharp/Refactorings/AddUsingStaticDirectiveRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/AddUsingStaticDirectiveRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/AnonymousMethodExpressionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/AnonymousMethodExpressionRefactoring.cs index f0eacc059a..f7d35b397c 100644 --- a/src/Refactorings/CSharp/Refactorings/AnonymousMethodExpressionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/AnonymousMethodExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; using Roslynator.CSharp.Analysis; diff --git a/src/Refactorings/CSharp/Refactorings/ArgumentListRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ArgumentListRefactoring.cs index 374adda481..bedc36d505 100644 --- a/src/Refactorings/CSharp/Refactorings/ArgumentListRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ArgumentListRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/ArgumentRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ArgumentRefactoring.cs index 8cc24a5d38..d445b24bd9 100644 --- a/src/Refactorings/CSharp/Refactorings/ArgumentRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ArgumentRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/ArrowExpressionClauseRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ArrowExpressionClauseRefactoring.cs index ad574828e5..5643d25b7b 100644 --- a/src/Refactorings/CSharp/Refactorings/ArrowExpressionClauseRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ArrowExpressionClauseRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; using Roslynator.CSharp.Analysis; diff --git a/src/Refactorings/CSharp/Refactorings/AssignmentExpressionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/AssignmentExpressionRefactoring.cs index 915fac4faf..1d0b7c8d4b 100644 --- a/src/Refactorings/CSharp/Refactorings/AssignmentExpressionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/AssignmentExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/AttributeArgumentListRefactoring.cs b/src/Refactorings/CSharp/Refactorings/AttributeArgumentListRefactoring.cs index 7155137642..ef6f2df7df 100644 --- a/src/Refactorings/CSharp/Refactorings/AttributeArgumentListRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/AttributeArgumentListRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/AttributeArgumentParameterNameRefactoring.cs b/src/Refactorings/CSharp/Refactorings/AttributeArgumentParameterNameRefactoring.cs index 4ab3d2cca1..c9106379a7 100644 --- a/src/Refactorings/CSharp/Refactorings/AttributeArgumentParameterNameRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/AttributeArgumentParameterNameRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Refactorings/CSharp/Refactorings/AttributeListRefactoring.cs b/src/Refactorings/CSharp/Refactorings/AttributeListRefactoring.cs index 6c56e702b0..a2ba01dde7 100644 --- a/src/Refactorings/CSharp/Refactorings/AttributeListRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/AttributeListRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Refactorings/CSharp/Refactorings/AttributeRefactoring.cs b/src/Refactorings/CSharp/Refactorings/AttributeRefactoring.cs index 96b4f1199d..d3b5f0c35b 100644 --- a/src/Refactorings/CSharp/Refactorings/AttributeRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/AttributeRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/BinaryExpressionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/BinaryExpressionRefactoring.cs index 77ba5826f2..4c6c8d4a97 100644 --- a/src/Refactorings/CSharp/Refactorings/BinaryExpressionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/BinaryExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/BlockRefactoring.cs b/src/Refactorings/CSharp/Refactorings/BlockRefactoring.cs index 32f226ecce..37050dce55 100644 --- a/src/Refactorings/CSharp/Refactorings/BlockRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/BlockRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/CallIndexOfInsteadOfContainsRefactoring.cs b/src/Refactorings/CSharp/Refactorings/CallIndexOfInsteadOfContainsRefactoring.cs index 65718f688c..32bc2e0b77 100644 --- a/src/Refactorings/CSharp/Refactorings/CallIndexOfInsteadOfContainsRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/CallIndexOfInsteadOfContainsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/CastExpressionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/CastExpressionRefactoring.cs index 74c5f19e7c..e2f9a6889d 100644 --- a/src/Refactorings/CSharp/Refactorings/CastExpressionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/CastExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/ChangeDeclarationExpressionTypeRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ChangeDeclarationExpressionTypeRefactoring.cs index 9503fa0873..9a3ada3b69 100644 --- a/src/Refactorings/CSharp/Refactorings/ChangeDeclarationExpressionTypeRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ChangeDeclarationExpressionTypeRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/ChangeMethodReturnTypeToVoidRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ChangeMethodReturnTypeToVoidRefactoring.cs index b5e128485c..4578e576ab 100644 --- a/src/Refactorings/CSharp/Refactorings/ChangeMethodReturnTypeToVoidRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ChangeMethodReturnTypeToVoidRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/ChangeVariableDeclarationTypeRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ChangeVariableDeclarationTypeRefactoring.cs index 9b1e83888a..2377155f6d 100644 --- a/src/Refactorings/CSharp/Refactorings/ChangeVariableDeclarationTypeRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ChangeVariableDeclarationTypeRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/CheckExpressionForNullRefactoring.cs b/src/Refactorings/CSharp/Refactorings/CheckExpressionForNullRefactoring.cs index 9ff48e0bae..21486325d3 100644 --- a/src/Refactorings/CSharp/Refactorings/CheckExpressionForNullRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/CheckExpressionForNullRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Refactorings/CSharp/Refactorings/CheckParameterForNullRefactoring.cs b/src/Refactorings/CSharp/Refactorings/CheckParameterForNullRefactoring.cs index 28872ba868..631374b639 100644 --- a/src/Refactorings/CSharp/Refactorings/CheckParameterForNullRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/CheckParameterForNullRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Refactorings/CSharp/Refactorings/ClassDeclarationRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ClassDeclarationRefactoring.cs index fe53854f37..15f31b0f5b 100644 --- a/src/Refactorings/CSharp/Refactorings/ClassDeclarationRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ClassDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/CloseParenTokenRefactoring.cs b/src/Refactorings/CSharp/Refactorings/CloseParenTokenRefactoring.cs index 10b382128c..8575da3ef3 100644 --- a/src/Refactorings/CSharp/Refactorings/CloseParenTokenRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/CloseParenTokenRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/CommaTokenRefactoring.cs b/src/Refactorings/CSharp/Refactorings/CommaTokenRefactoring.cs index 77eb9d8552..df812e1b78 100644 --- a/src/Refactorings/CSharp/Refactorings/CommaTokenRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/CommaTokenRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/CommentOutRefactoring.cs b/src/Refactorings/CSharp/Refactorings/CommentOutRefactoring.cs index 2601fad7f0..d17d1144f9 100644 --- a/src/Refactorings/CSharp/Refactorings/CommentOutRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/CommentOutRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Text; diff --git a/src/Refactorings/CSharp/Refactorings/CommentTriviaRefactoring.cs b/src/Refactorings/CSharp/Refactorings/CommentTriviaRefactoring.cs index 944e348ac7..5fae1f6761 100644 --- a/src/Refactorings/CSharp/Refactorings/CommentTriviaRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/CommentTriviaRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/Refactorings/CSharp/Refactorings/ConditionalAccessExpressionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ConditionalAccessExpressionRefactoring.cs index 9deb7c5430..137d89ce37 100644 --- a/src/Refactorings/CSharp/Refactorings/ConditionalAccessExpressionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ConditionalAccessExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/ConditionalExpressionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ConditionalExpressionRefactoring.cs index f241a0e611..ddeaa47358 100644 --- a/src/Refactorings/CSharp/Refactorings/ConditionalExpressionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ConditionalExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/ConstructorDeclarationRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ConstructorDeclarationRefactoring.cs index 20bdfb9cfc..4c2b28af22 100644 --- a/src/Refactorings/CSharp/Refactorings/ConstructorDeclarationRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ConstructorDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/ConvertAutoPropertyToFullPropertyRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ConvertAutoPropertyToFullPropertyRefactoring.cs index 9ca80ec184..82df75d972 100644 --- a/src/Refactorings/CSharp/Refactorings/ConvertAutoPropertyToFullPropertyRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ConvertAutoPropertyToFullPropertyRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/ConvertAutoPropertyToFullPropertyWithoutBackingFieldRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ConvertAutoPropertyToFullPropertyWithoutBackingFieldRefactoring.cs index 5ed41f5b9a..7900f87a82 100644 --- a/src/Refactorings/CSharp/Refactorings/ConvertAutoPropertyToFullPropertyWithoutBackingFieldRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ConvertAutoPropertyToFullPropertyWithoutBackingFieldRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/ConvertBodyAndExpressionBodyRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ConvertBodyAndExpressionBodyRefactoring.cs index 088b16d2a6..ced0a4ca4f 100644 --- a/src/Refactorings/CSharp/Refactorings/ConvertBodyAndExpressionBodyRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ConvertBodyAndExpressionBodyRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.Text; diff --git a/src/Refactorings/CSharp/Refactorings/ConvertDoToWhileRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ConvertDoToWhileRefactoring.cs index 18ade8dd5c..0437cf311a 100644 --- a/src/Refactorings/CSharp/Refactorings/ConvertDoToWhileRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ConvertDoToWhileRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/ConvertForToForEachRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ConvertForToForEachRefactoring.cs index 8d4ce87034..b14110fa48 100644 --- a/src/Refactorings/CSharp/Refactorings/ConvertForToForEachRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ConvertForToForEachRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Diagnostics; diff --git a/src/Refactorings/CSharp/Refactorings/ConvertForToWhileRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ConvertForToWhileRefactoring.cs index f615199b9c..c11aa22d08 100644 --- a/src/Refactorings/CSharp/Refactorings/ConvertForToWhileRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ConvertForToWhileRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Refactorings/CSharp/Refactorings/ConvertHexadecimalLiteralToDecimalLiteralRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ConvertHexadecimalLiteralToDecimalLiteralRefactoring.cs index e0e09640c4..b5e95eac0b 100644 --- a/src/Refactorings/CSharp/Refactorings/ConvertHexadecimalLiteralToDecimalLiteralRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ConvertHexadecimalLiteralToDecimalLiteralRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/ConvertIfToSwitchRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ConvertIfToSwitchRefactoring.cs index 79046fc31f..ea119d29de 100644 --- a/src/Refactorings/CSharp/Refactorings/ConvertIfToSwitchRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ConvertIfToSwitchRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Refactorings/CSharp/Refactorings/ConvertInterpolatedStringToConcatenationRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ConvertInterpolatedStringToConcatenationRefactoring.cs index 47690852c2..7fd69b93d4 100644 --- a/src/Refactorings/CSharp/Refactorings/ConvertInterpolatedStringToConcatenationRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ConvertInterpolatedStringToConcatenationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/ConvertInterpolatedStringToStringFormatRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ConvertInterpolatedStringToStringFormatRefactoring.cs index ca8cb7e129..adb5bd524d 100644 --- a/src/Refactorings/CSharp/Refactorings/ConvertInterpolatedStringToStringFormatRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ConvertInterpolatedStringToStringFormatRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Globalization; diff --git a/src/Refactorings/CSharp/Refactorings/ConvertLambdaExpressionBodyToBlockBodyRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ConvertLambdaExpressionBodyToBlockBodyRefactoring.cs index 8952a1a843..e41c4cc772 100644 --- a/src/Refactorings/CSharp/Refactorings/ConvertLambdaExpressionBodyToBlockBodyRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ConvertLambdaExpressionBodyToBlockBodyRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/ConvertMethodGroupToLambdaRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ConvertMethodGroupToLambdaRefactoring.cs index b19fcc369b..a2692f77c0 100644 --- a/src/Refactorings/CSharp/Refactorings/ConvertMethodGroupToLambdaRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ConvertMethodGroupToLambdaRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/ConvertReturnToIf/ConvertReturnStatementToIfRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ConvertReturnToIf/ConvertReturnStatementToIfRefactoring.cs index 6bcd07d879..766dd580b0 100644 --- a/src/Refactorings/CSharp/Refactorings/ConvertReturnToIf/ConvertReturnStatementToIfRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ConvertReturnToIf/ConvertReturnStatementToIfRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.ConvertReturnToIf; diff --git a/src/Refactorings/CSharp/Refactorings/ConvertReturnToIf/ConvertReturnToIfElseRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ConvertReturnToIf/ConvertReturnToIfElseRefactoring.cs index 2417c59820..19e4166116 100644 --- a/src/Refactorings/CSharp/Refactorings/ConvertReturnToIf/ConvertReturnToIfElseRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ConvertReturnToIf/ConvertReturnToIfElseRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/ConvertReturnToIf/ConvertReturnToIfRefactoring`1.cs b/src/Refactorings/CSharp/Refactorings/ConvertReturnToIf/ConvertReturnToIfRefactoring`1.cs index ca6b4a2b11..6b5380e255 100644 --- a/src/Refactorings/CSharp/Refactorings/ConvertReturnToIf/ConvertReturnToIfRefactoring`1.cs +++ b/src/Refactorings/CSharp/Refactorings/ConvertReturnToIf/ConvertReturnToIfRefactoring`1.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/ConvertReturnToIf/ConvertYieldReturnToIfElseRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ConvertReturnToIf/ConvertYieldReturnToIfElseRefactoring.cs index f11ec5902d..c9505aa7ae 100644 --- a/src/Refactorings/CSharp/Refactorings/ConvertReturnToIf/ConvertYieldReturnToIfElseRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ConvertReturnToIf/ConvertYieldReturnToIfElseRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/ConvertStatementsToIfElseRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ConvertStatementsToIfElseRefactoring.cs index ab380278a0..e702419b23 100644 --- a/src/Refactorings/CSharp/Refactorings/ConvertStatementsToIfElseRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ConvertStatementsToIfElseRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/ConvertStringFormatToInterpolatedStringRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ConvertStringFormatToInterpolatedStringRefactoring.cs index 3d576582cd..4fc8eb3d86 100644 --- a/src/Refactorings/CSharp/Refactorings/ConvertStringFormatToInterpolatedStringRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ConvertStringFormatToInterpolatedStringRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Refactorings/CSharp/Refactorings/ConvertStringLiteralRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ConvertStringLiteralRefactoring.cs index 8467fa0218..88f0396a9f 100644 --- a/src/Refactorings/CSharp/Refactorings/ConvertStringLiteralRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ConvertStringLiteralRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Text; diff --git a/src/Refactorings/CSharp/Refactorings/ConvertSwitchToIfRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ConvertSwitchToIfRefactoring.cs index 637af54542..c4f953507c 100644 --- a/src/Refactorings/CSharp/Refactorings/ConvertSwitchToIfRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ConvertSwitchToIfRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/ConvertWhileToForRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ConvertWhileToForRefactoring.cs index 35d849b087..26653f6142 100644 --- a/src/Refactorings/CSharp/Refactorings/ConvertWhileToForRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ConvertWhileToForRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Refactorings/CSharp/Refactorings/CopyAttributeArgumentRefactoring.cs b/src/Refactorings/CSharp/Refactorings/CopyAttributeArgumentRefactoring.cs index 4fe473beb1..a0f17eee22 100644 --- a/src/Refactorings/CSharp/Refactorings/CopyAttributeArgumentRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/CopyAttributeArgumentRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/CopyDocumentationCommentFromBaseMemberRefactoring.cs b/src/Refactorings/CSharp/Refactorings/CopyDocumentationCommentFromBaseMemberRefactoring.cs index 7545e771e7..83b4cc5dcd 100644 --- a/src/Refactorings/CSharp/Refactorings/CopyDocumentationCommentFromBaseMemberRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/CopyDocumentationCommentFromBaseMemberRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/CopySwitchSectionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/CopySwitchSectionRefactoring.cs index 22355f1e4c..18d3097657 100644 --- a/src/Refactorings/CSharp/Refactorings/CopySwitchSectionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/CopySwitchSectionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/DeclarationExpressionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/DeclarationExpressionRefactoring.cs index 36dcb5e7a6..de7d7935cb 100644 --- a/src/Refactorings/CSharp/Refactorings/DeclarationExpressionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/DeclarationExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/DeclarationPatternRefactoring.cs b/src/Refactorings/CSharp/Refactorings/DeclarationPatternRefactoring.cs index d6a7b9c59e..92433deb4c 100644 --- a/src/Refactorings/CSharp/Refactorings/DeclarationPatternRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/DeclarationPatternRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/DeconstructForeachVariableRefactoring.cs b/src/Refactorings/CSharp/Refactorings/DeconstructForeachVariableRefactoring.cs index 760062858a..f1037e8665 100644 --- a/src/Refactorings/CSharp/Refactorings/DeconstructForeachVariableRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/DeconstructForeachVariableRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Refactorings/CSharp/Refactorings/DelegateDeclarationRefactoring.cs b/src/Refactorings/CSharp/Refactorings/DelegateDeclarationRefactoring.cs index e7ec1ead23..421ac0a6af 100644 --- a/src/Refactorings/CSharp/Refactorings/DelegateDeclarationRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/DelegateDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/DestructorDeclarationRefactoring.cs b/src/Refactorings/CSharp/Refactorings/DestructorDeclarationRefactoring.cs index 1ccc9061a3..0843a512dd 100644 --- a/src/Refactorings/CSharp/Refactorings/DestructorDeclarationRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/DestructorDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/DirectiveTriviaRefactoring.cs b/src/Refactorings/CSharp/Refactorings/DirectiveTriviaRefactoring.cs index 059a32f44d..67bd19e41d 100644 --- a/src/Refactorings/CSharp/Refactorings/DirectiveTriviaRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/DirectiveTriviaRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/Refactorings/CSharp/Refactorings/DoStatementRefactoring.cs b/src/Refactorings/CSharp/Refactorings/DoStatementRefactoring.cs index 89b1dd89da..56a5f69fb5 100644 --- a/src/Refactorings/CSharp/Refactorings/DoStatementRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/DoStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/ElseClauseRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ElseClauseRefactoring.cs index 1ca639cc32..6fc484ce3d 100644 --- a/src/Refactorings/CSharp/Refactorings/ElseClauseRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ElseClauseRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/EmbeddedStatementRefactoring.cs b/src/Refactorings/CSharp/Refactorings/EmbeddedStatementRefactoring.cs index edecb9bbfe..dc0f24dc6a 100644 --- a/src/Refactorings/CSharp/Refactorings/EmbeddedStatementRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/EmbeddedStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; using Roslynator.CSharp.Refactorings.WrapStatements; diff --git a/src/Refactorings/CSharp/Refactorings/EnumDeclarationRefactoring.cs b/src/Refactorings/CSharp/Refactorings/EnumDeclarationRefactoring.cs index 369903f040..57254bc3ad 100644 --- a/src/Refactorings/CSharp/Refactorings/EnumDeclarationRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/EnumDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/EnumMemberDeclarationRefactoring.cs b/src/Refactorings/CSharp/Refactorings/EnumMemberDeclarationRefactoring.cs index db58aad3a2..be2778323f 100644 --- a/src/Refactorings/CSharp/Refactorings/EnumMemberDeclarationRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/EnumMemberDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/EventDeclarationRefactoring.cs b/src/Refactorings/CSharp/Refactorings/EventDeclarationRefactoring.cs index 32ba0f3199..2d673bd757 100644 --- a/src/Refactorings/CSharp/Refactorings/EventDeclarationRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/EventDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/EventFieldDeclarationRefactoring.cs b/src/Refactorings/CSharp/Refactorings/EventFieldDeclarationRefactoring.cs index dc810550e7..f1ab9768c8 100644 --- a/src/Refactorings/CSharp/Refactorings/EventFieldDeclarationRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/EventFieldDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/ExpandCoalesceExpressionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ExpandCoalesceExpressionRefactoring.cs index 13cb777ddc..f9424f8033 100644 --- a/src/Refactorings/CSharp/Refactorings/ExpandCoalesceExpressionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ExpandCoalesceExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/ExpandEventDeclarationRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ExpandEventDeclarationRefactoring.cs index b74f8a1846..4b371dc8f6 100644 --- a/src/Refactorings/CSharp/Refactorings/ExpandEventDeclarationRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ExpandEventDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/ExpandInitializerRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ExpandInitializerRefactoring.cs index 088f526df8..0696f91b98 100644 --- a/src/Refactorings/CSharp/Refactorings/ExpandInitializerRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ExpandInitializerRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Refactorings/CSharp/Refactorings/ExpandPositionalConstructorRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ExpandPositionalConstructorRefactoring.cs index 43dc07bb91..4cb7c0a7d1 100644 --- a/src/Refactorings/CSharp/Refactorings/ExpandPositionalConstructorRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ExpandPositionalConstructorRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Refactorings/CSharp/Refactorings/ExpressionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ExpressionRefactoring.cs index 1a6024ae82..0366ecccf1 100644 --- a/src/Refactorings/CSharp/Refactorings/ExpressionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/ExpressionStatementRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ExpressionStatementRefactoring.cs index e8f6a1ef7c..ba34ddacea 100644 --- a/src/Refactorings/CSharp/Refactorings/ExpressionStatementRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ExpressionStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/ExtractCondition/ExtractConditionFromIfRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ExtractCondition/ExtractConditionFromIfRefactoring.cs index 09317adc98..efc527f6d4 100644 --- a/src/Refactorings/CSharp/Refactorings/ExtractCondition/ExtractConditionFromIfRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ExtractCondition/ExtractConditionFromIfRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/ExtractCondition/ExtractConditionFromIfToIfRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ExtractCondition/ExtractConditionFromIfToIfRefactoring.cs index ee23d05201..5192824558 100644 --- a/src/Refactorings/CSharp/Refactorings/ExtractCondition/ExtractConditionFromIfToIfRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ExtractCondition/ExtractConditionFromIfToIfRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/ExtractCondition/ExtractConditionFromIfToNestedIfRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ExtractCondition/ExtractConditionFromIfToNestedIfRefactoring.cs index 8053f6f9f3..15f800583b 100644 --- a/src/Refactorings/CSharp/Refactorings/ExtractCondition/ExtractConditionFromIfToNestedIfRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ExtractCondition/ExtractConditionFromIfToNestedIfRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/ExtractCondition/ExtractConditionFromWhileToNestedIfRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ExtractCondition/ExtractConditionFromWhileToNestedIfRefactoring.cs index d5505b0801..0d8a60e535 100644 --- a/src/Refactorings/CSharp/Refactorings/ExtractCondition/ExtractConditionFromWhileToNestedIfRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ExtractCondition/ExtractConditionFromWhileToNestedIfRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/ExtractCondition/ExtractConditionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ExtractCondition/ExtractConditionRefactoring.cs index 62e208869a..f851e521be 100644 --- a/src/Refactorings/CSharp/Refactorings/ExtractCondition/ExtractConditionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ExtractCondition/ExtractConditionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/Refactorings/CSharp/Refactorings/ExtractCondition/ExtractConditionRefactoring`1.cs b/src/Refactorings/CSharp/Refactorings/ExtractCondition/ExtractConditionRefactoring`1.cs index 8c8ab20801..633e96f459 100644 --- a/src/Refactorings/CSharp/Refactorings/ExtractCondition/ExtractConditionRefactoring`1.cs +++ b/src/Refactorings/CSharp/Refactorings/ExtractCondition/ExtractConditionRefactoring`1.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/Refactorings/CSharp/Refactorings/ExtractEventHandlerMethodRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ExtractEventHandlerMethodRefactoring.cs index bb29d7bdb4..a2d3c9ce65 100644 --- a/src/Refactorings/CSharp/Refactorings/ExtractEventHandlerMethodRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ExtractEventHandlerMethodRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Diagnostics; diff --git a/src/Refactorings/CSharp/Refactorings/ExtractExpressionFromParenthesesRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ExtractExpressionFromParenthesesRefactoring.cs index 364a9a0189..f06c5276c6 100644 --- a/src/Refactorings/CSharp/Refactorings/ExtractExpressionFromParenthesesRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ExtractExpressionFromParenthesesRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/ExtractTypeDeclarationToNewFileRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ExtractTypeDeclarationToNewFileRefactoring.cs index 83c501d45c..cf0fb9597c 100644 --- a/src/Refactorings/CSharp/Refactorings/ExtractTypeDeclarationToNewFileRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ExtractTypeDeclarationToNewFileRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/FieldDeclarationRefactoring.cs b/src/Refactorings/CSharp/Refactorings/FieldDeclarationRefactoring.cs index 8d51a54e29..9135cdb003 100644 --- a/src/Refactorings/CSharp/Refactorings/FieldDeclarationRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/FieldDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/ForEachStatementRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ForEachStatementRefactoring.cs index 8a41ce81e1..092b16f8a4 100644 --- a/src/Refactorings/CSharp/Refactorings/ForEachStatementRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ForEachStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/ForStatementRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ForStatementRefactoring.cs index 0a879e639a..9741cd3e38 100644 --- a/src/Refactorings/CSharp/Refactorings/ForStatementRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ForStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/GenerateAllEnumValuesRefactoring.cs b/src/Refactorings/CSharp/Refactorings/GenerateAllEnumValuesRefactoring.cs index 25b4b62e17..5b7cb2a011 100644 --- a/src/Refactorings/CSharp/Refactorings/GenerateAllEnumValuesRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/GenerateAllEnumValuesRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Refactorings/CSharp/Refactorings/GenerateCombinedEnumMemberRefactoring.cs b/src/Refactorings/CSharp/Refactorings/GenerateCombinedEnumMemberRefactoring.cs index 6e332391c7..b9a1f8e1da 100644 --- a/src/Refactorings/CSharp/Refactorings/GenerateCombinedEnumMemberRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/GenerateCombinedEnumMemberRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Refactorings/CSharp/Refactorings/GenerateEnumMemberRefactoring.cs b/src/Refactorings/CSharp/Refactorings/GenerateEnumMemberRefactoring.cs index 3c148845e3..824df72e66 100644 --- a/src/Refactorings/CSharp/Refactorings/GenerateEnumMemberRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/GenerateEnumMemberRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/GenerateEnumValuesRefactoring.cs b/src/Refactorings/CSharp/Refactorings/GenerateEnumValuesRefactoring.cs index 16486b5e2f..c2c8f49735 100644 --- a/src/Refactorings/CSharp/Refactorings/GenerateEnumValuesRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/GenerateEnumValuesRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Refactorings/CSharp/Refactorings/GenerateOnEventMethodRefactoring.cs b/src/Refactorings/CSharp/Refactorings/GenerateOnEventMethodRefactoring.cs index 8041684499..09ccf556e3 100644 --- a/src/Refactorings/CSharp/Refactorings/GenerateOnEventMethodRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/GenerateOnEventMethodRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Refactorings/CSharp/Refactorings/GeneratePropertyForDebuggerDisplayAttributeRefactoring.cs b/src/Refactorings/CSharp/Refactorings/GeneratePropertyForDebuggerDisplayAttributeRefactoring.cs index 430735f645..2b66f63ad1 100644 --- a/src/Refactorings/CSharp/Refactorings/GeneratePropertyForDebuggerDisplayAttributeRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/GeneratePropertyForDebuggerDisplayAttributeRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Linq; diff --git a/src/Refactorings/CSharp/Refactorings/IdentifierNameRefactoring.cs b/src/Refactorings/CSharp/Refactorings/IdentifierNameRefactoring.cs index 69cbe5bd9c..552fd9d62d 100644 --- a/src/Refactorings/CSharp/Refactorings/IdentifierNameRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/IdentifierNameRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/IfStatementRefactoring.cs b/src/Refactorings/CSharp/Refactorings/IfStatementRefactoring.cs index 054a73a1f3..0dc3894886 100644 --- a/src/Refactorings/CSharp/Refactorings/IfStatementRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/IfStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/ImplementCustomEnumeratorRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ImplementCustomEnumeratorRefactoring.cs index 39da9676cf..342213840a 100644 --- a/src/Refactorings/CSharp/Refactorings/ImplementCustomEnumeratorRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ImplementCustomEnumeratorRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Refactorings/CSharp/Refactorings/ImplementIEquatableOfTRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ImplementIEquatableOfTRefactoring.cs index 380b3afcb2..4f3a2b8043 100644 --- a/src/Refactorings/CSharp/Refactorings/ImplementIEquatableOfTRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ImplementIEquatableOfTRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/IndexerDeclarationRefactoring.cs b/src/Refactorings/CSharp/Refactorings/IndexerDeclarationRefactoring.cs index c84c54bf6f..3be6e34e64 100644 --- a/src/Refactorings/CSharp/Refactorings/IndexerDeclarationRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/IndexerDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/InitializeFieldFromConstructorRefactoring.cs b/src/Refactorings/CSharp/Refactorings/InitializeFieldFromConstructorRefactoring.cs index 31984d4d4d..4003c9404e 100644 --- a/src/Refactorings/CSharp/Refactorings/InitializeFieldFromConstructorRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/InitializeFieldFromConstructorRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Refactorings/CSharp/Refactorings/InitializeLocalVariableWithDefaultValueRefactoring.cs b/src/Refactorings/CSharp/Refactorings/InitializeLocalVariableWithDefaultValueRefactoring.cs index 0002f310b9..0faf4277df 100644 --- a/src/Refactorings/CSharp/Refactorings/InitializeLocalVariableWithDefaultValueRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/InitializeLocalVariableWithDefaultValueRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/InitializerExpressionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/InitializerExpressionRefactoring.cs index 69805cdb97..c482132044 100644 --- a/src/Refactorings/CSharp/Refactorings/InitializerExpressionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/InitializerExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/InlineConstantDeclarationRefactoring.cs b/src/Refactorings/CSharp/Refactorings/InlineConstantDeclarationRefactoring.cs index da04009183..543e2b564c 100644 --- a/src/Refactorings/CSharp/Refactorings/InlineConstantDeclarationRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/InlineConstantDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Refactorings/CSharp/Refactorings/InlineConstantValueRefactoring.cs b/src/Refactorings/CSharp/Refactorings/InlineConstantValueRefactoring.cs index 8ca7c54408..2d1ecc9653 100644 --- a/src/Refactorings/CSharp/Refactorings/InlineConstantValueRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/InlineConstantValueRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/InlineDefinition/InlineAnalyzer.cs b/src/Refactorings/CSharp/Refactorings/InlineDefinition/InlineAnalyzer.cs index 7cf133d769..156a0d5a06 100644 --- a/src/Refactorings/CSharp/Refactorings/InlineDefinition/InlineAnalyzer.cs +++ b/src/Refactorings/CSharp/Refactorings/InlineDefinition/InlineAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Refactorings/CSharp/Refactorings/InlineDefinition/InlineMethodAnalyzer.cs b/src/Refactorings/CSharp/Refactorings/InlineDefinition/InlineMethodAnalyzer.cs index 06117a7591..00c73a68bd 100644 --- a/src/Refactorings/CSharp/Refactorings/InlineDefinition/InlineMethodAnalyzer.cs +++ b/src/Refactorings/CSharp/Refactorings/InlineDefinition/InlineMethodAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Refactorings/CSharp/Refactorings/InlineDefinition/InlineMethodRefactoring.cs b/src/Refactorings/CSharp/Refactorings/InlineDefinition/InlineMethodRefactoring.cs index b445b3cbd6..eb9c411b58 100644 --- a/src/Refactorings/CSharp/Refactorings/InlineDefinition/InlineMethodRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/InlineDefinition/InlineMethodRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/InlineDefinition/InlinePropertyAnalyzer.cs b/src/Refactorings/CSharp/Refactorings/InlineDefinition/InlinePropertyAnalyzer.cs index 654bd70b43..e3107436a3 100644 --- a/src/Refactorings/CSharp/Refactorings/InlineDefinition/InlinePropertyAnalyzer.cs +++ b/src/Refactorings/CSharp/Refactorings/InlineDefinition/InlinePropertyAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Refactorings/CSharp/Refactorings/InlineDefinition/InlinePropertyRefactoring.cs b/src/Refactorings/CSharp/Refactorings/InlineDefinition/InlinePropertyRefactoring.cs index 356dab5404..2db6e8106d 100644 --- a/src/Refactorings/CSharp/Refactorings/InlineDefinition/InlinePropertyRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/InlineDefinition/InlinePropertyRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/InlineDefinition/InlineRefactoring.cs b/src/Refactorings/CSharp/Refactorings/InlineDefinition/InlineRefactoring.cs index 4a70b41356..4451b40fc2 100644 --- a/src/Refactorings/CSharp/Refactorings/InlineDefinition/InlineRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/InlineDefinition/InlineRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Refactorings/CSharp/Refactorings/InlineDefinition/InlineRewriter.cs b/src/Refactorings/CSharp/Refactorings/InlineDefinition/InlineRewriter.cs index e82d856167..d8c846bef1 100644 --- a/src/Refactorings/CSharp/Refactorings/InlineDefinition/InlineRewriter.cs +++ b/src/Refactorings/CSharp/Refactorings/InlineDefinition/InlineRewriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/InlineDefinition/ParameterInfo.cs b/src/Refactorings/CSharp/Refactorings/InlineDefinition/ParameterInfo.cs index ebcd4c82e9..38a5e8c709 100644 --- a/src/Refactorings/CSharp/Refactorings/InlineDefinition/ParameterInfo.cs +++ b/src/Refactorings/CSharp/Refactorings/InlineDefinition/ParameterInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/InlineUsingStaticDirectiveRefactoring.cs b/src/Refactorings/CSharp/Refactorings/InlineUsingStaticDirectiveRefactoring.cs index f4d296033b..9771aeb495 100644 --- a/src/Refactorings/CSharp/Refactorings/InlineUsingStaticDirectiveRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/InlineUsingStaticDirectiveRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Diagnostics; diff --git a/src/Refactorings/CSharp/Refactorings/InsertInterpolationRefactoring.cs b/src/Refactorings/CSharp/Refactorings/InsertInterpolationRefactoring.cs index 588b12bdae..1fef9830e6 100644 --- a/src/Refactorings/CSharp/Refactorings/InsertInterpolationRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/InsertInterpolationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Text; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/InterfaceDeclarationRefactoring.cs b/src/Refactorings/CSharp/Refactorings/InterfaceDeclarationRefactoring.cs index d349ec49ef..03501a77e0 100644 --- a/src/Refactorings/CSharp/Refactorings/InterfaceDeclarationRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/InterfaceDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; using Roslynator.CSharp.Refactorings.SortMemberDeclarations; diff --git a/src/Refactorings/CSharp/Refactorings/InterpolatedStringRefactoring.cs b/src/Refactorings/CSharp/Refactorings/InterpolatedStringRefactoring.cs index c50a52b57d..74ac13bf63 100644 --- a/src/Refactorings/CSharp/Refactorings/InterpolatedStringRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/InterpolatedStringRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; using Roslynator.CSharp.Analysis; diff --git a/src/Refactorings/CSharp/Refactorings/InterpolatedStringTextRefactoring.cs b/src/Refactorings/CSharp/Refactorings/InterpolatedStringTextRefactoring.cs index bbdcd6614e..d2e9cfab96 100644 --- a/src/Refactorings/CSharp/Refactorings/InterpolatedStringTextRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/InterpolatedStringTextRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/InterpolationRefactoring.cs b/src/Refactorings/CSharp/Refactorings/InterpolationRefactoring.cs index 330206e897..749b38d34b 100644 --- a/src/Refactorings/CSharp/Refactorings/InterpolationRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/InterpolationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/IntroduceAndInitialize/IntroduceAndInitializeFieldInfo.cs b/src/Refactorings/CSharp/Refactorings/IntroduceAndInitialize/IntroduceAndInitializeFieldInfo.cs index 96a41faec2..209f8e81ce 100644 --- a/src/Refactorings/CSharp/Refactorings/IntroduceAndInitialize/IntroduceAndInitializeFieldInfo.cs +++ b/src/Refactorings/CSharp/Refactorings/IntroduceAndInitialize/IntroduceAndInitializeFieldInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; using static Microsoft.CodeAnalysis.CSharp.SyntaxFactory; diff --git a/src/Refactorings/CSharp/Refactorings/IntroduceAndInitialize/IntroduceAndInitializeFieldRefactoring.cs b/src/Refactorings/CSharp/Refactorings/IntroduceAndInitialize/IntroduceAndInitializeFieldRefactoring.cs index 297e706455..94de727d46 100644 --- a/src/Refactorings/CSharp/Refactorings/IntroduceAndInitialize/IntroduceAndInitializeFieldRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/IntroduceAndInitialize/IntroduceAndInitializeFieldRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/IntroduceAndInitialize/IntroduceAndInitializeInfo.cs b/src/Refactorings/CSharp/Refactorings/IntroduceAndInitialize/IntroduceAndInitializeInfo.cs index 44b62248c5..29af8c850f 100644 --- a/src/Refactorings/CSharp/Refactorings/IntroduceAndInitialize/IntroduceAndInitializeInfo.cs +++ b/src/Refactorings/CSharp/Refactorings/IntroduceAndInitialize/IntroduceAndInitializeInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/IntroduceAndInitialize/IntroduceAndInitializePropertyInfo.cs b/src/Refactorings/CSharp/Refactorings/IntroduceAndInitialize/IntroduceAndInitializePropertyInfo.cs index 6a26b364d6..5ed3d93f3a 100644 --- a/src/Refactorings/CSharp/Refactorings/IntroduceAndInitialize/IntroduceAndInitializePropertyInfo.cs +++ b/src/Refactorings/CSharp/Refactorings/IntroduceAndInitialize/IntroduceAndInitializePropertyInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/IntroduceAndInitialize/IntroduceAndInitializePropertyRefactoring.cs b/src/Refactorings/CSharp/Refactorings/IntroduceAndInitialize/IntroduceAndInitializePropertyRefactoring.cs index 6c2ebc1c13..c272d56561 100644 --- a/src/Refactorings/CSharp/Refactorings/IntroduceAndInitialize/IntroduceAndInitializePropertyRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/IntroduceAndInitialize/IntroduceAndInitializePropertyRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/IntroduceAndInitialize/IntroduceAndInitializeRefactoring.cs b/src/Refactorings/CSharp/Refactorings/IntroduceAndInitialize/IntroduceAndInitializeRefactoring.cs index 6b62028cc4..93e56a1c51 100644 --- a/src/Refactorings/CSharp/Refactorings/IntroduceAndInitialize/IntroduceAndInitializeRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/IntroduceAndInitialize/IntroduceAndInitializeRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Refactorings/CSharp/Refactorings/IntroduceConstructorRefactoring.cs b/src/Refactorings/CSharp/Refactorings/IntroduceConstructorRefactoring.cs index 62248180f0..2cdb5dfc6a 100644 --- a/src/Refactorings/CSharp/Refactorings/IntroduceConstructorRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/IntroduceConstructorRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Diagnostics; diff --git a/src/Refactorings/CSharp/Refactorings/InvertBinaryExpressionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/InvertBinaryExpressionRefactoring.cs index c5961a1301..4e35f02e78 100644 --- a/src/Refactorings/CSharp/Refactorings/InvertBinaryExpressionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/InvertBinaryExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/InvertBooleanLiteralRefactoring.cs b/src/Refactorings/CSharp/Refactorings/InvertBooleanLiteralRefactoring.cs index 1ae80b7e9c..6d3ba58c1c 100644 --- a/src/Refactorings/CSharp/Refactorings/InvertBooleanLiteralRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/InvertBooleanLiteralRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/InvertConditionalExpressionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/InvertConditionalExpressionRefactoring.cs index 18d439e695..c02699d18e 100644 --- a/src/Refactorings/CSharp/Refactorings/InvertConditionalExpressionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/InvertConditionalExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/InvertIfRefactoring.cs b/src/Refactorings/CSharp/Refactorings/InvertIfRefactoring.cs index bdf38ad0d9..2e4575bedd 100644 --- a/src/Refactorings/CSharp/Refactorings/InvertIfRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/InvertIfRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/InvertIsExpressionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/InvertIsExpressionRefactoring.cs index 9bbe6701b4..74e9daa8d9 100644 --- a/src/Refactorings/CSharp/Refactorings/InvertIsExpressionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/InvertIsExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/InvertLinqMethodCallRefactoring.cs b/src/Refactorings/CSharp/Refactorings/InvertLinqMethodCallRefactoring.cs index 1aa5c29725..ce99dc4001 100644 --- a/src/Refactorings/CSharp/Refactorings/InvertLinqMethodCallRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/InvertLinqMethodCallRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/InvertOperatorRefactoring.cs b/src/Refactorings/CSharp/Refactorings/InvertOperatorRefactoring.cs index c642b625eb..8bd4149b4e 100644 --- a/src/Refactorings/CSharp/Refactorings/InvertOperatorRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/InvertOperatorRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/InvocationExpressionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/InvocationExpressionRefactoring.cs index 6175f6ad55..7abc3ecfe1 100644 --- a/src/Refactorings/CSharp/Refactorings/InvocationExpressionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/InvocationExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/JoinStringExpressionsRefactoring.cs b/src/Refactorings/CSharp/Refactorings/JoinStringExpressionsRefactoring.cs index 225cf052a5..ae87e8e2cd 100644 --- a/src/Refactorings/CSharp/Refactorings/JoinStringExpressionsRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/JoinStringExpressionsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/LambdaExpressionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/LambdaExpressionRefactoring.cs index 72d7d7439e..192339c0ba 100644 --- a/src/Refactorings/CSharp/Refactorings/LambdaExpressionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/LambdaExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/LiteralExpressionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/LiteralExpressionRefactoring.cs index 95d35e7526..a0edaa9a6f 100644 --- a/src/Refactorings/CSharp/Refactorings/LiteralExpressionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/LiteralExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/Refactorings/CSharp/Refactorings/LocalDeclarationStatementRefactoring.cs b/src/Refactorings/CSharp/Refactorings/LocalDeclarationStatementRefactoring.cs index ed02649a54..be059dc088 100644 --- a/src/Refactorings/CSharp/Refactorings/LocalDeclarationStatementRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/LocalDeclarationStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/LocalFunctionStatementRefactoring.cs b/src/Refactorings/CSharp/Refactorings/LocalFunctionStatementRefactoring.cs index b8e4b94591..366d58d196 100644 --- a/src/Refactorings/CSharp/Refactorings/LocalFunctionStatementRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/LocalFunctionStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/Refactorings/CSharp/Refactorings/LockStatementRefactoring.cs b/src/Refactorings/CSharp/Refactorings/LockStatementRefactoring.cs index f14c49c6e3..71e21dc6ee 100644 --- a/src/Refactorings/CSharp/Refactorings/LockStatementRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/LockStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/Refactorings/CSharp/Refactorings/MakeMemberAbstract/MakeIndexerAbstractRefactoring.cs b/src/Refactorings/CSharp/Refactorings/MakeMemberAbstract/MakeIndexerAbstractRefactoring.cs index e739fa7d5b..be20a66ef8 100644 --- a/src/Refactorings/CSharp/Refactorings/MakeMemberAbstract/MakeIndexerAbstractRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/MakeMemberAbstract/MakeIndexerAbstractRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/MakeMemberAbstract/MakeMethodAbstractRefactoring.cs b/src/Refactorings/CSharp/Refactorings/MakeMemberAbstract/MakeMethodAbstractRefactoring.cs index 059b00233f..7de45fa3db 100644 --- a/src/Refactorings/CSharp/Refactorings/MakeMemberAbstract/MakeMethodAbstractRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/MakeMemberAbstract/MakeMethodAbstractRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/MakeMemberAbstract/MakePropertyAbstractRefactoring.cs b/src/Refactorings/CSharp/Refactorings/MakeMemberAbstract/MakePropertyAbstractRefactoring.cs index 2037af786f..aa36762ed3 100644 --- a/src/Refactorings/CSharp/Refactorings/MakeMemberAbstract/MakePropertyAbstractRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/MakeMemberAbstract/MakePropertyAbstractRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/MakeMemberVirtual/MakeIndexerVirtualRefactoring.cs b/src/Refactorings/CSharp/Refactorings/MakeMemberVirtual/MakeIndexerVirtualRefactoring.cs index ce469d534d..873b317914 100644 --- a/src/Refactorings/CSharp/Refactorings/MakeMemberVirtual/MakeIndexerVirtualRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/MakeMemberVirtual/MakeIndexerVirtualRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/MakeMemberVirtual/MakeMemberAbstractHelper.cs b/src/Refactorings/CSharp/Refactorings/MakeMemberVirtual/MakeMemberAbstractHelper.cs index 116f477524..fe50d19267 100644 --- a/src/Refactorings/CSharp/Refactorings/MakeMemberVirtual/MakeMemberAbstractHelper.cs +++ b/src/Refactorings/CSharp/Refactorings/MakeMemberVirtual/MakeMemberAbstractHelper.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Refactorings/CSharp/Refactorings/MakeMemberVirtual/MakeMethodVirtualRefactoring.cs b/src/Refactorings/CSharp/Refactorings/MakeMemberVirtual/MakeMethodVirtualRefactoring.cs index b90a8f0c1b..dd395a1cf3 100644 --- a/src/Refactorings/CSharp/Refactorings/MakeMemberVirtual/MakeMethodVirtualRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/MakeMemberVirtual/MakeMethodVirtualRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/MakeMemberVirtual/MakePropertyVirtualRefactoring.cs b/src/Refactorings/CSharp/Refactorings/MakeMemberVirtual/MakePropertyVirtualRefactoring.cs index fb6484fc0f..8f5e49dd05 100644 --- a/src/Refactorings/CSharp/Refactorings/MakeMemberVirtual/MakePropertyVirtualRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/MakeMemberVirtual/MakePropertyVirtualRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/MemberDeclarationRefactoring.cs b/src/Refactorings/CSharp/Refactorings/MemberDeclarationRefactoring.cs index 497c388869..9c28530158 100644 --- a/src/Refactorings/CSharp/Refactorings/MemberDeclarationRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/MemberDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/MemberDeclarationsRefactoring.cs b/src/Refactorings/CSharp/Refactorings/MemberDeclarationsRefactoring.cs index c50db6f323..2f7a0e96b9 100644 --- a/src/Refactorings/CSharp/Refactorings/MemberDeclarationsRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/MemberDeclarationsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Refactorings/CSharp/Refactorings/MergeIfStatementsRefactoring.cs b/src/Refactorings/CSharp/Refactorings/MergeIfStatementsRefactoring.cs index 196638cbe2..2d9156e55f 100644 --- a/src/Refactorings/CSharp/Refactorings/MergeIfStatementsRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/MergeIfStatementsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Refactorings/CSharp/Refactorings/MergeIfWithParentIfRefactoring.cs b/src/Refactorings/CSharp/Refactorings/MergeIfWithParentIfRefactoring.cs index b5f0d403a5..dd2795ff7f 100644 --- a/src/Refactorings/CSharp/Refactorings/MergeIfWithParentIfRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/MergeIfWithParentIfRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/MergeLocalDeclarationsRefactoring.cs b/src/Refactorings/CSharp/Refactorings/MergeLocalDeclarationsRefactoring.cs index 9b7514adee..453afec7ef 100644 --- a/src/Refactorings/CSharp/Refactorings/MergeLocalDeclarationsRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/MergeLocalDeclarationsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/MergeSwitchSectionsRefactoring.cs b/src/Refactorings/CSharp/Refactorings/MergeSwitchSectionsRefactoring.cs index 0d89bd28d9..229f37e97a 100644 --- a/src/Refactorings/CSharp/Refactorings/MergeSwitchSectionsRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/MergeSwitchSectionsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Refactorings/CSharp/Refactorings/MethodDeclarationRefactoring.cs b/src/Refactorings/CSharp/Refactorings/MethodDeclarationRefactoring.cs index 6536e23c7c..e9a0a01fa8 100644 --- a/src/Refactorings/CSharp/Refactorings/MethodDeclarationRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/MethodDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/MoveUnsafeContextToContainingDeclarationRefactoring.cs b/src/Refactorings/CSharp/Refactorings/MoveUnsafeContextToContainingDeclarationRefactoring.cs index 72b875e0b8..e34da4a490 100644 --- a/src/Refactorings/CSharp/Refactorings/MoveUnsafeContextToContainingDeclarationRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/MoveUnsafeContextToContainingDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/NamespaceDeclarationRefactoring.cs b/src/Refactorings/CSharp/Refactorings/NamespaceDeclarationRefactoring.cs index 26709d7bc4..4462f3ac41 100644 --- a/src/Refactorings/CSharp/Refactorings/NamespaceDeclarationRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/NamespaceDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; using Roslynator.CSharp.Refactorings.SortMemberDeclarations; diff --git a/src/Refactorings/CSharp/Refactorings/NodeInList/ArgumentSyntaxRewriter.cs b/src/Refactorings/CSharp/Refactorings/NodeInList/ArgumentSyntaxRewriter.cs index a902ca71a2..ffc1f42998 100644 --- a/src/Refactorings/CSharp/Refactorings/NodeInList/ArgumentSyntaxRewriter.cs +++ b/src/Refactorings/CSharp/Refactorings/NodeInList/ArgumentSyntaxRewriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/NodeInList/CopyArgumentOrParameterRefactoring.cs b/src/Refactorings/CSharp/Refactorings/NodeInList/CopyArgumentOrParameterRefactoring.cs index c359954dcb..fb8133d581 100644 --- a/src/Refactorings/CSharp/Refactorings/NodeInList/CopyArgumentOrParameterRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/NodeInList/CopyArgumentOrParameterRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/NodeInList/CopyArgumentRefactoring.cs b/src/Refactorings/CSharp/Refactorings/NodeInList/CopyArgumentRefactoring.cs index cef9382d11..881a40b57f 100644 --- a/src/Refactorings/CSharp/Refactorings/NodeInList/CopyArgumentRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/NodeInList/CopyArgumentRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/NodeInList/CopyParameterRefactoring.cs b/src/Refactorings/CSharp/Refactorings/NodeInList/CopyParameterRefactoring.cs index 5f7936ec7b..ff4abef945 100644 --- a/src/Refactorings/CSharp/Refactorings/NodeInList/CopyParameterRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/NodeInList/CopyParameterRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/NodeInList/NodeInListRefactoring.cs b/src/Refactorings/CSharp/Refactorings/NodeInList/NodeInListRefactoring.cs index 8b776b1a4e..bc614208f4 100644 --- a/src/Refactorings/CSharp/Refactorings/NodeInList/NodeInListRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/NodeInList/NodeInListRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.Text; diff --git a/src/Refactorings/CSharp/Refactorings/NodeInList/NodeSyntaxRewriter.cs b/src/Refactorings/CSharp/Refactorings/NodeInList/NodeSyntaxRewriter.cs index f86bc8733a..754e6720cb 100644 --- a/src/Refactorings/CSharp/Refactorings/NodeInList/NodeSyntaxRewriter.cs +++ b/src/Refactorings/CSharp/Refactorings/NodeInList/NodeSyntaxRewriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/Refactorings/CSharp/Refactorings/NodeInList/ParameterSyntaxRewriter.cs b/src/Refactorings/CSharp/Refactorings/NodeInList/ParameterSyntaxRewriter.cs index b8bd457b22..cef36da2ee 100644 --- a/src/Refactorings/CSharp/Refactorings/NodeInList/ParameterSyntaxRewriter.cs +++ b/src/Refactorings/CSharp/Refactorings/NodeInList/ParameterSyntaxRewriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/NodeInList/RewriterInfo.cs b/src/Refactorings/CSharp/Refactorings/NodeInList/RewriterInfo.cs index 4dfadb8b33..8987a35258 100644 --- a/src/Refactorings/CSharp/Refactorings/NodeInList/RewriterInfo.cs +++ b/src/Refactorings/CSharp/Refactorings/NodeInList/RewriterInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/NotifyWhenPropertyChangesRefactoring.cs b/src/Refactorings/CSharp/Refactorings/NotifyWhenPropertyChangesRefactoring.cs index 8f3be3be9b..c7a02bfbaa 100644 --- a/src/Refactorings/CSharp/Refactorings/NotifyWhenPropertyChangesRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/NotifyWhenPropertyChangesRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/ParameterListRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ParameterListRefactoring.cs index 7bac276f15..0abc55524a 100644 --- a/src/Refactorings/CSharp/Refactorings/ParameterListRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ParameterListRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/ParameterRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ParameterRefactoring.cs index c7c0ecab97..d3f4d763fb 100644 --- a/src/Refactorings/CSharp/Refactorings/ParameterRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ParameterRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/ParenthesizeExpressionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ParenthesizeExpressionRefactoring.cs index fe6479753e..671ba87502 100644 --- a/src/Refactorings/CSharp/Refactorings/ParenthesizeExpressionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ParenthesizeExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/Refactorings/CSharp/Refactorings/ParenthesizedExpressionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ParenthesizedExpressionRefactoring.cs index cbe00ac00b..c58d170783 100644 --- a/src/Refactorings/CSharp/Refactorings/ParenthesizedExpressionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ParenthesizedExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/PlusTokenRefactoring.cs b/src/Refactorings/CSharp/Refactorings/PlusTokenRefactoring.cs index dc420cb896..4b517769e1 100644 --- a/src/Refactorings/CSharp/Refactorings/PlusTokenRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/PlusTokenRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/PostfixUnaryExpressionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/PostfixUnaryExpressionRefactoring.cs index 3965f0690f..14cf0b2b4d 100644 --- a/src/Refactorings/CSharp/Refactorings/PostfixUnaryExpressionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/PostfixUnaryExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/PrefixUnaryExpressionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/PrefixUnaryExpressionRefactoring.cs index fb70e21927..8424aa0a0d 100644 --- a/src/Refactorings/CSharp/Refactorings/PrefixUnaryExpressionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/PrefixUnaryExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/PromoteLocalToParameterRefactoring.cs b/src/Refactorings/CSharp/Refactorings/PromoteLocalToParameterRefactoring.cs index d5479bd014..3724bfaa10 100644 --- a/src/Refactorings/CSharp/Refactorings/PromoteLocalToParameterRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/PromoteLocalToParameterRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/PropertyDeclarationRefactoring.cs b/src/Refactorings/CSharp/Refactorings/PropertyDeclarationRefactoring.cs index 6ce4b9fcfa..c82527eabc 100644 --- a/src/Refactorings/CSharp/Refactorings/PropertyDeclarationRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/PropertyDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/QualifiedNameRefactoring.cs b/src/Refactorings/CSharp/Refactorings/QualifiedNameRefactoring.cs index 8ef3402476..939923f3ec 100644 --- a/src/Refactorings/CSharp/Refactorings/QualifiedNameRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/QualifiedNameRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/RecordDeclarationRefactoring.cs b/src/Refactorings/CSharp/Refactorings/RecordDeclarationRefactoring.cs index 16648a2b31..69642d32fc 100644 --- a/src/Refactorings/CSharp/Refactorings/RecordDeclarationRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/RecordDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/RefactoringContext.cs b/src/Refactorings/CSharp/Refactorings/RefactoringContext.cs index 29deb451db..f13ec016aa 100644 --- a/src/Refactorings/CSharp/Refactorings/RefactoringContext.cs +++ b/src/Refactorings/CSharp/Refactorings/RefactoringContext.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/Refactorings/CSharp/Refactorings/RegionDirectiveTriviaRefactoring.cs b/src/Refactorings/CSharp/Refactorings/RegionDirectiveTriviaRefactoring.cs index fc4a7b0c2f..7147d900c4 100644 --- a/src/Refactorings/CSharp/Refactorings/RegionDirectiveTriviaRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/RegionDirectiveTriviaRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; using Roslynator.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/RemoveAllMemberDeclarationsRefactoring.cs b/src/Refactorings/CSharp/Refactorings/RemoveAllMemberDeclarationsRefactoring.cs index cb3ab6da1c..83b54ccdcf 100644 --- a/src/Refactorings/CSharp/Refactorings/RemoveAllMemberDeclarationsRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/RemoveAllMemberDeclarationsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/RemoveAllPreprocessorDirectivesRefactoring.cs b/src/Refactorings/CSharp/Refactorings/RemoveAllPreprocessorDirectivesRefactoring.cs index d4e7d84371..de7e575110 100644 --- a/src/Refactorings/CSharp/Refactorings/RemoveAllPreprocessorDirectivesRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/RemoveAllPreprocessorDirectivesRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings; diff --git a/src/Refactorings/CSharp/Refactorings/RemoveAllStatementsRefactoring.cs b/src/Refactorings/CSharp/Refactorings/RemoveAllStatementsRefactoring.cs index 42d6e846ed..8d2ebb4504 100644 --- a/src/Refactorings/CSharp/Refactorings/RemoveAllStatementsRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/RemoveAllStatementsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/RemoveAsyncAwaitRefactoring.cs b/src/Refactorings/CSharp/Refactorings/RemoveAsyncAwaitRefactoring.cs index 1d09dbe72b..881fd19f3a 100644 --- a/src/Refactorings/CSharp/Refactorings/RemoveAsyncAwaitRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/RemoveAsyncAwaitRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/RemoveBracesFromSwitchSectionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/RemoveBracesFromSwitchSectionRefactoring.cs index 566761a270..cfa0d1b7ad 100644 --- a/src/Refactorings/CSharp/Refactorings/RemoveBracesFromSwitchSectionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/RemoveBracesFromSwitchSectionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/RemoveBracesFromSwitchSectionsRefactoring.cs b/src/Refactorings/CSharp/Refactorings/RemoveBracesFromSwitchSectionsRefactoring.cs index 71904d6576..e5379c40a3 100644 --- a/src/Refactorings/CSharp/Refactorings/RemoveBracesFromSwitchSectionsRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/RemoveBracesFromSwitchSectionsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Refactorings/CSharp/Refactorings/RemoveBracesRefactoring.cs b/src/Refactorings/CSharp/Refactorings/RemoveBracesRefactoring.cs index c49995e410..ee554f9b78 100644 --- a/src/Refactorings/CSharp/Refactorings/RemoveBracesRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/RemoveBracesRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/RemoveConditionFromLastElseRefactoring.cs b/src/Refactorings/CSharp/Refactorings/RemoveConditionFromLastElseRefactoring.cs index 112ecdd4e0..cb2dc0f71e 100644 --- a/src/Refactorings/CSharp/Refactorings/RemoveConditionFromLastElseRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/RemoveConditionFromLastElseRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/RemoveContainingStatementRefactoring.cs b/src/Refactorings/CSharp/Refactorings/RemoveContainingStatementRefactoring.cs index f20ae799e2..be3788fc44 100644 --- a/src/Refactorings/CSharp/Refactorings/RemoveContainingStatementRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/RemoveContainingStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Refactorings/CSharp/Refactorings/RemoveEnumMemberValueRefactoring.cs b/src/Refactorings/CSharp/Refactorings/RemoveEnumMemberValueRefactoring.cs index 25604f9a28..8e7bfd4e3f 100644 --- a/src/Refactorings/CSharp/Refactorings/RemoveEnumMemberValueRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/RemoveEnumMemberValueRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Refactorings/CSharp/Refactorings/RemoveInstantiationOfLocalVariableRefactoring.cs b/src/Refactorings/CSharp/Refactorings/RemoveInstantiationOfLocalVariableRefactoring.cs index 2e1446941e..af33ac9c7e 100644 --- a/src/Refactorings/CSharp/Refactorings/RemoveInstantiationOfLocalVariableRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/RemoveInstantiationOfLocalVariableRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/RemovePropertyInitializerRefactoring.cs b/src/Refactorings/CSharp/Refactorings/RemovePropertyInitializerRefactoring.cs index e62738f4d0..77043b0b03 100644 --- a/src/Refactorings/CSharp/Refactorings/RemovePropertyInitializerRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/RemovePropertyInitializerRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/RemoveUnnecessaryAssignmentRefactoring.cs b/src/Refactorings/CSharp/Refactorings/RemoveUnnecessaryAssignmentRefactoring.cs index 783007a07d..a10eaa14bb 100644 --- a/src/Refactorings/CSharp/Refactorings/RemoveUnnecessaryAssignmentRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/RemoveUnnecessaryAssignmentRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/ReplaceConditionalExpressionWithTrueOrFalseBranchRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ReplaceConditionalExpressionWithTrueOrFalseBranchRefactoring.cs index 428757d871..d54fb998b1 100644 --- a/src/Refactorings/CSharp/Refactorings/ReplaceConditionalExpressionWithTrueOrFalseBranchRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ReplaceConditionalExpressionWithTrueOrFalseBranchRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/ReplaceEqualityOperatorWithStringEqualsRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ReplaceEqualityOperatorWithStringEqualsRefactoring.cs index af1e4b6c35..1f8a728b5f 100644 --- a/src/Refactorings/CSharp/Refactorings/ReplaceEqualityOperatorWithStringEqualsRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ReplaceEqualityOperatorWithStringEqualsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/ReplaceEqualsExpression/ReplaceEqualityOperatorRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ReplaceEqualsExpression/ReplaceEqualityOperatorRefactoring.cs index d9a927b2e7..f5d1e21f8f 100644 --- a/src/Refactorings/CSharp/Refactorings/ReplaceEqualsExpression/ReplaceEqualityOperatorRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ReplaceEqualsExpression/ReplaceEqualityOperatorRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/ReplaceEqualsExpression/ReplaceEqualityOperatorWithStringIsNullOrEmptyRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ReplaceEqualsExpression/ReplaceEqualityOperatorWithStringIsNullOrEmptyRefactoring.cs index 6768333a05..3a1692b29b 100644 --- a/src/Refactorings/CSharp/Refactorings/ReplaceEqualsExpression/ReplaceEqualityOperatorWithStringIsNullOrEmptyRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ReplaceEqualsExpression/ReplaceEqualityOperatorWithStringIsNullOrEmptyRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.ReplaceEqualsExpression; diff --git a/src/Refactorings/CSharp/Refactorings/ReplaceEqualsExpression/ReplaceEqualityOperatorWithStringIsNullOrWhiteSpaceRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ReplaceEqualsExpression/ReplaceEqualityOperatorWithStringIsNullOrWhiteSpaceRefactoring.cs index 8f6a38a55c..aa8351b291 100644 --- a/src/Refactorings/CSharp/Refactorings/ReplaceEqualsExpression/ReplaceEqualityOperatorWithStringIsNullOrWhiteSpaceRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ReplaceEqualsExpression/ReplaceEqualityOperatorWithStringIsNullOrWhiteSpaceRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.ReplaceEqualsExpression; diff --git a/src/Refactorings/CSharp/Refactorings/ReplaceInterpolatedStringWithInterpolationExpressionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ReplaceInterpolatedStringWithInterpolationExpressionRefactoring.cs index cb6793b512..fe25ef6224 100644 --- a/src/Refactorings/CSharp/Refactorings/ReplaceInterpolatedStringWithInterpolationExpressionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ReplaceInterpolatedStringWithInterpolationExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/ReplaceMethodWithProperty/ReplaceMethodWithPropertyRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ReplaceMethodWithProperty/ReplaceMethodWithPropertyRefactoring.cs index 981dfdd0f6..f4dd3e8f40 100644 --- a/src/Refactorings/CSharp/Refactorings/ReplaceMethodWithProperty/ReplaceMethodWithPropertyRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ReplaceMethodWithProperty/ReplaceMethodWithPropertyRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Refactorings/CSharp/Refactorings/ReplaceMethodWithProperty/ReplaceMethodWithPropertySyntaxRewriter.cs b/src/Refactorings/CSharp/Refactorings/ReplaceMethodWithProperty/ReplaceMethodWithPropertySyntaxRewriter.cs index 55a30658c2..b9d18bdfdb 100644 --- a/src/Refactorings/CSharp/Refactorings/ReplaceMethodWithProperty/ReplaceMethodWithPropertySyntaxRewriter.cs +++ b/src/Refactorings/CSharp/Refactorings/ReplaceMethodWithProperty/ReplaceMethodWithPropertySyntaxRewriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Refactorings/CSharp/Refactorings/ReplaceNullLiteralWithDefaultExpressionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ReplaceNullLiteralWithDefaultExpressionRefactoring.cs index 18c81c0528..64b13afd5f 100644 --- a/src/Refactorings/CSharp/Refactorings/ReplaceNullLiteralWithDefaultExpressionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ReplaceNullLiteralWithDefaultExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/ReplacePropertyWithMethod/ReplacePropertyWithMethodRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ReplacePropertyWithMethod/ReplacePropertyWithMethodRefactoring.cs index 2a029fabec..90e89d10f7 100644 --- a/src/Refactorings/CSharp/Refactorings/ReplacePropertyWithMethod/ReplacePropertyWithMethodRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ReplacePropertyWithMethod/ReplacePropertyWithMethodRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Refactorings/CSharp/Refactorings/ReplacePropertyWithMethod/ReplacePropertyWithMethodSyntaxRewriter.cs b/src/Refactorings/CSharp/Refactorings/ReplacePropertyWithMethod/ReplacePropertyWithMethodSyntaxRewriter.cs index 59bbdc1f55..8540afc560 100644 --- a/src/Refactorings/CSharp/Refactorings/ReplacePropertyWithMethod/ReplacePropertyWithMethodSyntaxRewriter.cs +++ b/src/Refactorings/CSharp/Refactorings/ReplacePropertyWithMethod/ReplacePropertyWithMethodSyntaxRewriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/ReturnStatementRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ReturnStatementRefactoring.cs index 4a3c2f92ed..c5451ceb3d 100644 --- a/src/Refactorings/CSharp/Refactorings/ReturnStatementRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ReturnStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/ReverseForStatementRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ReverseForStatementRefactoring.cs index 490c86ffc5..dbf0e02219 100644 --- a/src/Refactorings/CSharp/Refactorings/ReverseForStatementRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ReverseForStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/ReverseReversedForStatementRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ReverseReversedForStatementRefactoring.cs index 9338ce6fb3..cfe70dd8fc 100644 --- a/src/Refactorings/CSharp/Refactorings/ReverseReversedForStatementRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ReverseReversedForStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/RoslynatorCodeRefactoringProvider.cs b/src/Refactorings/CSharp/Refactorings/RoslynatorCodeRefactoringProvider.cs index bcaac26254..bf9630c460 100644 --- a/src/Refactorings/CSharp/Refactorings/RoslynatorCodeRefactoringProvider.cs +++ b/src/Refactorings/CSharp/Refactorings/RoslynatorCodeRefactoringProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/Refactorings/CSharp/Refactorings/SelectedEnumMemberDeclarationsRefactoring.cs b/src/Refactorings/CSharp/Refactorings/SelectedEnumMemberDeclarationsRefactoring.cs index cd28c19ed9..3ab6d8187e 100644 --- a/src/Refactorings/CSharp/Refactorings/SelectedEnumMemberDeclarationsRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/SelectedEnumMemberDeclarationsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/SelectedLinesRefactoring.cs b/src/Refactorings/CSharp/Refactorings/SelectedLinesRefactoring.cs index 871a4b2a26..dba22734d9 100644 --- a/src/Refactorings/CSharp/Refactorings/SelectedLinesRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/SelectedLinesRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Refactorings/CSharp/Refactorings/SelectedMemberDeclarationsRefactoring.cs b/src/Refactorings/CSharp/Refactorings/SelectedMemberDeclarationsRefactoring.cs index d101cfc576..356211bf41 100644 --- a/src/Refactorings/CSharp/Refactorings/SelectedMemberDeclarationsRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/SelectedMemberDeclarationsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Refactorings/CSharp/Refactorings/SelectedStatementsRefactoring.cs b/src/Refactorings/CSharp/Refactorings/SelectedStatementsRefactoring.cs index a54227ff5e..faa912b689 100644 --- a/src/Refactorings/CSharp/Refactorings/SelectedStatementsRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/SelectedStatementsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/SelectedSwitchSectionsRefactoring.cs b/src/Refactorings/CSharp/Refactorings/SelectedSwitchSectionsRefactoring.cs index bb45adc6d4..cd8d8af329 100644 --- a/src/Refactorings/CSharp/Refactorings/SelectedSwitchSectionsRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/SelectedSwitchSectionsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Refactorings/CSharp/Refactorings/SemicolonTokenRefactoring.cs b/src/Refactorings/CSharp/Refactorings/SemicolonTokenRefactoring.cs index 5906c1c275..abe36fb8af 100644 --- a/src/Refactorings/CSharp/Refactorings/SemicolonTokenRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/SemicolonTokenRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/Refactorings/CSharp/Refactorings/SimpleMemberAccessExpressionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/SimpleMemberAccessExpressionRefactoring.cs index cb36efbe7b..7c18c379fd 100644 --- a/src/Refactorings/CSharp/Refactorings/SimpleMemberAccessExpressionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/SimpleMemberAccessExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/SortCaseLabelsRefactoring.cs b/src/Refactorings/CSharp/Refactorings/SortCaseLabelsRefactoring.cs index 2943eca0b8..0caf7e655f 100644 --- a/src/Refactorings/CSharp/Refactorings/SortCaseLabelsRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/SortCaseLabelsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Refactorings/CSharp/Refactorings/SortMemberDeclarations/SortEnumMemberDeclarationsRefactoring.cs b/src/Refactorings/CSharp/Refactorings/SortMemberDeclarations/SortEnumMemberDeclarationsRefactoring.cs index e836ba963e..0be9d607b2 100644 --- a/src/Refactorings/CSharp/Refactorings/SortMemberDeclarations/SortEnumMemberDeclarationsRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/SortMemberDeclarations/SortEnumMemberDeclarationsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Refactorings/CSharp/Refactorings/SortMemberDeclarations/SortMemberDeclarationsRefactoring.cs b/src/Refactorings/CSharp/Refactorings/SortMemberDeclarations/SortMemberDeclarationsRefactoring.cs index b73da5daed..6a34cb20ef 100644 --- a/src/Refactorings/CSharp/Refactorings/SortMemberDeclarations/SortMemberDeclarationsRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/SortMemberDeclarations/SortMemberDeclarationsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Refactorings/CSharp/Refactorings/SortMemberDeclarations/SortMemberDeclarationsRewriter.cs b/src/Refactorings/CSharp/Refactorings/SortMemberDeclarations/SortMemberDeclarationsRewriter.cs index 01506908c1..d6a690682a 100644 --- a/src/Refactorings/CSharp/Refactorings/SortMemberDeclarations/SortMemberDeclarationsRewriter.cs +++ b/src/Refactorings/CSharp/Refactorings/SortMemberDeclarations/SortMemberDeclarationsRewriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Refactorings/CSharp/Refactorings/SplitIfElseRefactoring.cs b/src/Refactorings/CSharp/Refactorings/SplitIfElseRefactoring.cs index ec7f4a3d2a..99985bab01 100644 --- a/src/Refactorings/CSharp/Refactorings/SplitIfElseRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/SplitIfElseRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Refactorings/CSharp/Refactorings/SplitIfStatementRefactoring.cs b/src/Refactorings/CSharp/Refactorings/SplitIfStatementRefactoring.cs index 1eb3786dfe..f0cde0d05a 100644 --- a/src/Refactorings/CSharp/Refactorings/SplitIfStatementRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/SplitIfStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Refactorings/CSharp/Refactorings/SplitLocalDeclarationAndAssignmentRefactoring.cs b/src/Refactorings/CSharp/Refactorings/SplitLocalDeclarationAndAssignmentRefactoring.cs index f7a56d445a..0bc366b664 100644 --- a/src/Refactorings/CSharp/Refactorings/SplitLocalDeclarationAndAssignmentRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/SplitLocalDeclarationAndAssignmentRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/SplitSwitchLabelsRefactoring.cs b/src/Refactorings/CSharp/Refactorings/SplitSwitchLabelsRefactoring.cs index 6093c278d8..3a4f39934a 100644 --- a/src/Refactorings/CSharp/Refactorings/SplitSwitchLabelsRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/SplitSwitchLabelsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Refactorings/CSharp/Refactorings/StatementRefactoring.cs b/src/Refactorings/CSharp/Refactorings/StatementRefactoring.cs index 587a23f79a..be809a3af2 100644 --- a/src/Refactorings/CSharp/Refactorings/StatementRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/StatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/StringLiteralExpressionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/StringLiteralExpressionRefactoring.cs index eaec6e1c1a..54b0af23f1 100644 --- a/src/Refactorings/CSharp/Refactorings/StringLiteralExpressionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/StringLiteralExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/Refactorings/CSharp/Refactorings/StructDeclarationRefactoring.cs b/src/Refactorings/CSharp/Refactorings/StructDeclarationRefactoring.cs index 3bc3b819d2..56ff7aa1fc 100644 --- a/src/Refactorings/CSharp/Refactorings/StructDeclarationRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/StructDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/SwapBinaryOperandsRefactoring.cs b/src/Refactorings/CSharp/Refactorings/SwapBinaryOperandsRefactoring.cs index d655adbabe..96acc8631b 100644 --- a/src/Refactorings/CSharp/Refactorings/SwapBinaryOperandsRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/SwapBinaryOperandsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/Refactorings/CSharp/Refactorings/SwitchExpressionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/SwitchExpressionRefactoring.cs index d0f9ade964..d86494a553 100644 --- a/src/Refactorings/CSharp/Refactorings/SwitchExpressionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/SwitchExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Refactorings/CSharp/Refactorings/SwitchSectionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/SwitchSectionRefactoring.cs index 9605b5e167..bafe07b993 100644 --- a/src/Refactorings/CSharp/Refactorings/SwitchSectionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/SwitchSectionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/SwitchStatementRefactoring.cs b/src/Refactorings/CSharp/Refactorings/SwitchStatementRefactoring.cs index a5254b74c2..40f1a9882a 100644 --- a/src/Refactorings/CSharp/Refactorings/SwitchStatementRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/SwitchStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/ThrowExpressionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ThrowExpressionRefactoring.cs index 86bf9d34c0..14e819e37a 100644 --- a/src/Refactorings/CSharp/Refactorings/ThrowExpressionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ThrowExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/ThrowStatementRefactoring.cs b/src/Refactorings/CSharp/Refactorings/ThrowStatementRefactoring.cs index 572d93fe54..c342715054 100644 --- a/src/Refactorings/CSharp/Refactorings/ThrowStatementRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/ThrowStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/TypeParameterConstraintClauseRefactoring.cs b/src/Refactorings/CSharp/Refactorings/TypeParameterConstraintClauseRefactoring.cs index 29ea21f629..366e8b56ac 100644 --- a/src/Refactorings/CSharp/Refactorings/TypeParameterConstraintClauseRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/TypeParameterConstraintClauseRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/UncommentMultiLineCommentRefactoring.cs b/src/Refactorings/CSharp/Refactorings/UncommentMultiLineCommentRefactoring.cs index 5453f83987..a66f37ffc1 100644 --- a/src/Refactorings/CSharp/Refactorings/UncommentMultiLineCommentRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/UncommentMultiLineCommentRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/Refactorings/CSharp/Refactorings/UncommentSingleLineCommentRefactoring.cs b/src/Refactorings/CSharp/Refactorings/UncommentSingleLineCommentRefactoring.cs index 3ac75353da..d20bcdc05f 100644 --- a/src/Refactorings/CSharp/Refactorings/UncommentSingleLineCommentRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/UncommentSingleLineCommentRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/UnsafeStatementRefactoring.cs b/src/Refactorings/CSharp/Refactorings/UnsafeStatementRefactoring.cs index 76bf1d33fc..4348136c67 100644 --- a/src/Refactorings/CSharp/Refactorings/UnsafeStatementRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/UnsafeStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/UseElementAccessRefactoring.cs b/src/Refactorings/CSharp/Refactorings/UseElementAccessRefactoring.cs index 3037dbdcda..b490bd2be2 100644 --- a/src/Refactorings/CSharp/Refactorings/UseElementAccessRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/UseElementAccessRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/UseEnumeratorExplicitlyRefactoring.cs b/src/Refactorings/CSharp/Refactorings/UseEnumeratorExplicitlyRefactoring.cs index 35aa396770..122e3f613c 100644 --- a/src/Refactorings/CSharp/Refactorings/UseEnumeratorExplicitlyRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/UseEnumeratorExplicitlyRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/UseIndexInitializerRefactoring.cs b/src/Refactorings/CSharp/Refactorings/UseIndexInitializerRefactoring.cs index afc87b4546..1f20d81dcf 100644 --- a/src/Refactorings/CSharp/Refactorings/UseIndexInitializerRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/UseIndexInitializerRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Refactorings/CSharp/Refactorings/UseListInsteadOfYieldRefactoring.cs b/src/Refactorings/CSharp/Refactorings/UseListInsteadOfYieldRefactoring.cs index 02a5ae70ff..291ca4dcc7 100644 --- a/src/Refactorings/CSharp/Refactorings/UseListInsteadOfYieldRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/UseListInsteadOfYieldRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/UseObjectInitializerRefactoring.cs b/src/Refactorings/CSharp/Refactorings/UseObjectInitializerRefactoring.cs index b1a2b2b651..1f8a75fc45 100644 --- a/src/Refactorings/CSharp/Refactorings/UseObjectInitializerRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/UseObjectInitializerRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/UseStringBuilderInsteadOfConcatenationRefactoring.cs b/src/Refactorings/CSharp/Refactorings/UseStringBuilderInsteadOfConcatenationRefactoring.cs index 41a916a43f..5e71d1683a 100644 --- a/src/Refactorings/CSharp/Refactorings/UseStringBuilderInsteadOfConcatenationRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/UseStringBuilderInsteadOfConcatenationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Refactorings/CSharp/Refactorings/UsingDirectiveRefactoring.cs b/src/Refactorings/CSharp/Refactorings/UsingDirectiveRefactoring.cs index eea6d3335e..00fe40dcb5 100644 --- a/src/Refactorings/CSharp/Refactorings/UsingDirectiveRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/UsingDirectiveRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/Refactorings/CSharp/Refactorings/UsingStatementRefactoring.cs b/src/Refactorings/CSharp/Refactorings/UsingStatementRefactoring.cs index 378c186cad..27058204e6 100644 --- a/src/Refactorings/CSharp/Refactorings/UsingStatementRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/UsingStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/VariableDeclarationRefactoring.cs b/src/Refactorings/CSharp/Refactorings/VariableDeclarationRefactoring.cs index e0571fe827..d0e97a0d37 100644 --- a/src/Refactorings/CSharp/Refactorings/VariableDeclarationRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/VariableDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/VariableDeclaratorRefactoring.cs b/src/Refactorings/CSharp/Refactorings/VariableDeclaratorRefactoring.cs index f766aa708c..9dea854ac8 100644 --- a/src/Refactorings/CSharp/Refactorings/VariableDeclaratorRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/VariableDeclaratorRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/WhileStatementRefactoring.cs b/src/Refactorings/CSharp/Refactorings/WhileStatementRefactoring.cs index 6eb82e13f7..7beca5e4fb 100644 --- a/src/Refactorings/CSharp/Refactorings/WhileStatementRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/WhileStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Refactorings/CSharp/Refactorings/WrapBinaryExpressionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/WrapBinaryExpressionRefactoring.cs index c14f584b31..5e232860bc 100644 --- a/src/Refactorings/CSharp/Refactorings/WrapBinaryExpressionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/WrapBinaryExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/Refactorings/CSharp/Refactorings/WrapCallChainRefactoring.cs b/src/Refactorings/CSharp/Refactorings/WrapCallChainRefactoring.cs index 4620a4f2a7..c048eb1387 100644 --- a/src/Refactorings/CSharp/Refactorings/WrapCallChainRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/WrapCallChainRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading; diff --git a/src/Refactorings/CSharp/Refactorings/WrapConstraintClausesRefactoring.cs b/src/Refactorings/CSharp/Refactorings/WrapConstraintClausesRefactoring.cs index 42b8861169..0bf941bfd0 100644 --- a/src/Refactorings/CSharp/Refactorings/WrapConstraintClausesRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/WrapConstraintClausesRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using Microsoft.CodeAnalysis; diff --git a/src/Refactorings/CSharp/Refactorings/WrapSelectedLines/WrapLinesInPreprocessorDirectiveRefactoring.cs b/src/Refactorings/CSharp/Refactorings/WrapSelectedLines/WrapLinesInPreprocessorDirectiveRefactoring.cs index 631f6ccf04..0085d5616b 100644 --- a/src/Refactorings/CSharp/Refactorings/WrapSelectedLines/WrapLinesInPreprocessorDirectiveRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/WrapSelectedLines/WrapLinesInPreprocessorDirectiveRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.WrapSelectedLines; diff --git a/src/Refactorings/CSharp/Refactorings/WrapSelectedLines/WrapLinesInRegionRefactoring.cs b/src/Refactorings/CSharp/Refactorings/WrapSelectedLines/WrapLinesInRegionRefactoring.cs index b993204d44..40bab83fd2 100644 --- a/src/Refactorings/CSharp/Refactorings/WrapSelectedLines/WrapLinesInRegionRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/WrapSelectedLines/WrapLinesInRegionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.WrapSelectedLines; diff --git a/src/Refactorings/CSharp/Refactorings/WrapSelectedLines/WrapSelectedLinesRefactoring.cs b/src/Refactorings/CSharp/Refactorings/WrapSelectedLines/WrapSelectedLinesRefactoring.cs index 661d03b97b..02847f1a89 100644 --- a/src/Refactorings/CSharp/Refactorings/WrapSelectedLines/WrapSelectedLinesRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/WrapSelectedLines/WrapSelectedLinesRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Refactorings/CSharp/Refactorings/WrapStatements/WrapInIfStatementRefactoring.cs b/src/Refactorings/CSharp/Refactorings/WrapStatements/WrapInIfStatementRefactoring.cs index 9d0b2b9245..66349b8ca1 100644 --- a/src/Refactorings/CSharp/Refactorings/WrapStatements/WrapInIfStatementRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/WrapStatements/WrapInIfStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/Refactorings/CSharp/Refactorings/WrapStatements/WrapLinesInTryCatchRefactoring.cs b/src/Refactorings/CSharp/Refactorings/WrapStatements/WrapLinesInTryCatchRefactoring.cs index cff4d425f9..8772b59d9a 100644 --- a/src/Refactorings/CSharp/Refactorings/WrapStatements/WrapLinesInTryCatchRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/WrapStatements/WrapLinesInTryCatchRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Refactorings/CSharp/Refactorings/WrapStatements/WrapStatementsInUsingStatementRefactoring.cs b/src/Refactorings/CSharp/Refactorings/WrapStatements/WrapStatementsInUsingStatementRefactoring.cs index 7ae5950448..79952d05b3 100644 --- a/src/Refactorings/CSharp/Refactorings/WrapStatements/WrapStatementsInUsingStatementRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/WrapStatements/WrapStatementsInUsingStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Refactorings/CSharp/Refactorings/WrapStatements/WrapStatementsRefactoring.cs b/src/Refactorings/CSharp/Refactorings/WrapStatements/WrapStatementsRefactoring.cs index 4cc10fea01..736cfef439 100644 --- a/src/Refactorings/CSharp/Refactorings/WrapStatements/WrapStatementsRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/WrapStatements/WrapStatementsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Refactorings/CSharp/Refactorings/YieldStatementRefactoring.cs b/src/Refactorings/CSharp/Refactorings/YieldStatementRefactoring.cs index 08efabfc11..66e3b16e08 100644 --- a/src/Refactorings/CSharp/Refactorings/YieldStatementRefactoring.cs +++ b/src/Refactorings/CSharp/Refactorings/YieldStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using System.Threading.Tasks; diff --git a/src/Refactorings/GlobalSuppressions.cs b/src/Refactorings/GlobalSuppressions.cs index d82c3a00c1..7041318ed6 100644 --- a/src/Refactorings/GlobalSuppressions.cs +++ b/src/Refactorings/GlobalSuppressions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // This file is used by Code Analysis to maintain SuppressMessage // attributes that are applied to this project. diff --git a/src/Tests.Old/Analyzers.Tests.Old/AbstractTypeShouldNotHavePublicConstructors.cs b/src/Tests.Old/Analyzers.Tests.Old/AbstractTypeShouldNotHavePublicConstructors.cs index 7462822f7a..9e0348f935 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/AbstractTypeShouldNotHavePublicConstructors.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/AbstractTypeShouldNotHavePublicConstructors.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Analyzers.Tests { diff --git a/src/Tests.Old/Analyzers.Tests.Old/AddBracesToSwitchSectionWithMultipleStatements.cs b/src/Tests.Old/Analyzers.Tests.Old/AddBracesToSwitchSectionWithMultipleStatements.cs index 78e0f1ebec..993a94d209 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/AddBracesToSwitchSectionWithMultipleStatements.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/AddBracesToSwitchSectionWithMultipleStatements.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Text.RegularExpressions; using System.Threading.Tasks; diff --git a/src/Tests.Old/Analyzers.Tests.Old/AddExceptionToDocumentationComment.cs b/src/Tests.Old/Analyzers.Tests.Old/AddExceptionToDocumentationComment.cs index 4a629c0b0f..e00ba39728 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/AddExceptionToDocumentationComment.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/AddExceptionToDocumentationComment.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Analyzers.Tests.Old/AddOrRemoveRegionName.cs b/src/Tests.Old/Analyzers.Tests.Old/AddOrRemoveRegionName.cs index e8c57c6cac..ccbc1641f3 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/AddOrRemoveRegionName.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/AddOrRemoveRegionName.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Analyzers.Tests.Old/AddParameterToDocumentationComment.cs b/src/Tests.Old/Analyzers.Tests.Old/AddParameterToDocumentationComment.cs index b8c5b3e4f2..e2b539acfc 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/AddParameterToDocumentationComment.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/AddParameterToDocumentationComment.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Analyzers.Tests.Old/AddParenthesesAccordingToOperatorPrecedence.cs b/src/Tests.Old/Analyzers.Tests.Old/AddParenthesesAccordingToOperatorPrecedence.cs index b6024167db..b94ae06abd 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/AddParenthesesAccordingToOperatorPrecedence.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/AddParenthesesAccordingToOperatorPrecedence.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Analyzers.Tests.Old/AddStaticModifierToAllPartialClassDeclarations.cs b/src/Tests.Old/Analyzers.Tests.Old/AddStaticModifierToAllPartialClassDeclarations.cs index 4808c107f9..3e263abe55 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/AddStaticModifierToAllPartialClassDeclarations.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/AddStaticModifierToAllPartialClassDeclarations.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Analyzers.Tests { diff --git a/src/Tests.Old/Analyzers.Tests.Old/AddSummaryElementToDocumentationComment.cs b/src/Tests.Old/Analyzers.Tests.Old/AddSummaryElementToDocumentationComment.cs index 13092a427f..c22e985b58 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/AddSummaryElementToDocumentationComment.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/AddSummaryElementToDocumentationComment.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Analyzers.Tests.Old/AddSummaryToDocumentationComment.cs b/src/Tests.Old/Analyzers.Tests.Old/AddSummaryToDocumentationComment.cs index f7d646410e..f2e28253ac 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/AddSummaryToDocumentationComment.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/AddSummaryToDocumentationComment.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Analyzers.Tests.Old/AddTypeParameterToDocumentationComment.cs b/src/Tests.Old/Analyzers.Tests.Old/AddTypeParameterToDocumentationComment.cs index 542a31726d..e3cfca5f7a 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/AddTypeParameterToDocumentationComment.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/AddTypeParameterToDocumentationComment.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Analyzers.Tests.Old/AvoidChainOfAssignments.cs b/src/Tests.Old/Analyzers.Tests.Old/AvoidChainOfAssignments.cs index e4fe8b18d7..947871bd09 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/AvoidChainOfAssignments.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/AvoidChainOfAssignments.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Analyzers.Tests.Old/AvoidEmbeddedStatement.cs b/src/Tests.Old/Analyzers.Tests.Old/AvoidEmbeddedStatement.cs index 5bf5fb4542..c5b62a9ce1 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/AvoidEmbeddedStatement.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/AvoidEmbeddedStatement.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.IO; diff --git a/src/Tests.Old/Analyzers.Tests.Old/AvoidEmbeddedStatementInIfElse.cs b/src/Tests.Old/Analyzers.Tests.Old/AvoidEmbeddedStatementInIfElse.cs index 2e9c2cd5d5..d88a30ada8 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/AvoidEmbeddedStatementInIfElse.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/AvoidEmbeddedStatementInIfElse.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.IO; diff --git a/src/Tests.Old/Analyzers.Tests.Old/AvoidEmptyCatchClauseThatCatchesSystemException.cs b/src/Tests.Old/Analyzers.Tests.Old/AvoidEmptyCatchClauseThatCatchesSystemException.cs index 9526d5c252..563abaa0bc 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/AvoidEmptyCatchClauseThatCatchesSystemException.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/AvoidEmptyCatchClauseThatCatchesSystemException.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Analyzers.Tests.Old/AvoidLockingOnPubliclyAccessibleInstance.cs b/src/Tests.Old/Analyzers.Tests.Old/AvoidLockingOnPubliclyAccessibleInstance.cs index 9c07b9be36..0504401138 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/AvoidLockingOnPubliclyAccessibleInstance.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/AvoidLockingOnPubliclyAccessibleInstance.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Tests.Old/Analyzers.Tests.Old/AvoidMultilineExpressionBody.cs b/src/Tests.Old/Analyzers.Tests.Old/AvoidMultilineExpressionBody.cs index 5705a9b21d..e2f50e1cf2 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/AvoidMultilineExpressionBody.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/AvoidMultilineExpressionBody.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Analyzers.Tests.Old/AvoidSemicolonAtEndOfDeclaration.cs b/src/Tests.Old/Analyzers.Tests.Old/AvoidSemicolonAtEndOfDeclaration.cs index 95708bcbee..6bdbd62ff6 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/AvoidSemicolonAtEndOfDeclaration.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/AvoidSemicolonAtEndOfDeclaration.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Analyzers.Tests { diff --git a/src/Tests.Old/Analyzers.Tests.Old/AvoidUsageOfDoStatementToCreateInfiniteLoop.cs b/src/Tests.Old/Analyzers.Tests.Old/AvoidUsageOfDoStatementToCreateInfiniteLoop.cs index a45105d663..5abcfe2004 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/AvoidUsageOfDoStatementToCreateInfiniteLoop.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/AvoidUsageOfDoStatementToCreateInfiniteLoop.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Analyzers.Tests { diff --git a/src/Tests.Old/Analyzers.Tests.Old/AvoidUsageOfForStatementToCreateInfiniteLoop.cs b/src/Tests.Old/Analyzers.Tests.Old/AvoidUsageOfForStatementToCreateInfiniteLoop.cs index 5a8f9c8e63..77b2522900 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/AvoidUsageOfForStatementToCreateInfiniteLoop.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/AvoidUsageOfForStatementToCreateInfiniteLoop.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Analyzers.Tests { diff --git a/src/Tests.Old/Analyzers.Tests.Old/AvoidUsageOfUsingAliasDirective.cs b/src/Tests.Old/Analyzers.Tests.Old/AvoidUsageOfUsingAliasDirective.cs index f76caeb157..93fcfc002a 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/AvoidUsageOfUsingAliasDirective.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/AvoidUsageOfUsingAliasDirective.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using x = System; using xx = System.Collections.Generic; diff --git a/src/Tests.Old/Analyzers.Tests.Old/AvoidUsageOfWhileStatementToCreateInfiniteLoop.cs b/src/Tests.Old/Analyzers.Tests.Old/AvoidUsageOfWhileStatementToCreateInfiniteLoop.cs index 466fba1b68..0afceb51d2 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/AvoidUsageOfWhileStatementToCreateInfiniteLoop.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/AvoidUsageOfWhileStatementToCreateInfiniteLoop.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Analyzers.Tests { diff --git a/src/Tests.Old/Analyzers.Tests.Old/BitwiseOperationOnEnumWithoutFlagsAttribute.cs b/src/Tests.Old/Analyzers.Tests.Old/BitwiseOperationOnEnumWithoutFlagsAttribute.cs index ea1ac3f7e6..38a29a2459 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/BitwiseOperationOnEnumWithoutFlagsAttribute.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/BitwiseOperationOnEnumWithoutFlagsAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Text.RegularExpressions; diff --git a/src/Tests.Old/Analyzers.Tests.Old/CallDebugFailInsteadOfDebugAssert.cs b/src/Tests.Old/Analyzers.Tests.Old/CallDebugFailInsteadOfDebugAssert.cs index 5b1a449deb..ce5542efa7 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/CallDebugFailInsteadOfDebugAssert.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/CallDebugFailInsteadOfDebugAssert.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using static System.Diagnostics.Debug; diff --git a/src/Tests.Old/Analyzers.Tests.Old/CallExtensionMethodAsInstanceMethod.cs b/src/Tests.Old/Analyzers.Tests.Old/CallExtensionMethodAsInstanceMethod.cs index 66b83c36f5..bd74655e59 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/CallExtensionMethodAsInstanceMethod.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/CallExtensionMethodAsInstanceMethod.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Linq; diff --git a/src/Tests.Old/Analyzers.Tests.Old/CallThenByInsteadOfOrderBy.cs b/src/Tests.Old/Analyzers.Tests.Old/CallThenByInsteadOfOrderBy.cs index 5419900ccd..b175d812f7 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/CallThenByInsteadOfOrderBy.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/CallThenByInsteadOfOrderBy.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Tests.Old/Analyzers.Tests.Old/CombineEnumerableWhereMethodChain.cs b/src/Tests.Old/Analyzers.Tests.Old/CombineEnumerableWhereMethodChain.cs index 00afa7209f..c7f2ff97ae 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/CombineEnumerableWhereMethodChain.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/CombineEnumerableWhereMethodChain.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Tests.Old/Analyzers.Tests.Old/DeclareEachAttributeSeparately.cs b/src/Tests.Old/Analyzers.Tests.Old/DeclareEachAttributeSeparately.cs index d15c8d3637..ef768372ee 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/DeclareEachAttributeSeparately.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/DeclareEachAttributeSeparately.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/Tests.Old/Analyzers.Tests.Old/DeclareEachTypeInSeparateFile/DeclareEachTypeInSeparateFile.cs b/src/Tests.Old/Analyzers.Tests.Old/DeclareEachTypeInSeparateFile/DeclareEachTypeInSeparateFile.cs index 064e84f0f8..96b12f89ad 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/DeclareEachTypeInSeparateFile/DeclareEachTypeInSeparateFile.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/DeclareEachTypeInSeparateFile/DeclareEachTypeInSeparateFile.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Runtime.InteropServices; diff --git a/src/Tests.Old/Analyzers.Tests.Old/DeclareTypeInsideNamespace.cs b/src/Tests.Old/Analyzers.Tests.Old/DeclareTypeInsideNamespace.cs index 6242146e70..a4df1c8032 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/DeclareTypeInsideNamespace.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/DeclareTypeInsideNamespace.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. internal class Foo { diff --git a/src/Tests.Old/Analyzers.Tests.Old/DeclareUsingDirectiveOnTopLevel.cs b/src/Tests.Old/Analyzers.Tests.Old/DeclareUsingDirectiveOnTopLevel.cs index e1375a20b3..dd46b6b202 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/DeclareUsingDirectiveOnTopLevel.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/DeclareUsingDirectiveOnTopLevel.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // xxx using System; diff --git a/src/Tests.Old/Analyzers.Tests.Old/DefaultLabelShouldBeLastLabelInSwitchSection.cs b/src/Tests.Old/Analyzers.Tests.Old/DefaultLabelShouldBeLastLabelInSwitchSection.cs index 0fc26a3f6d..c53da9da2f 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/DefaultLabelShouldBeLastLabelInSwitchSection.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/DefaultLabelShouldBeLastLabelInSwitchSection.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Analyzers.Tests { diff --git a/src/Tests.Old/Analyzers.Tests.Old/DefaultSwitchLabelShouldBeLastLabelInSection.cs b/src/Tests.Old/Analyzers.Tests.Old/DefaultSwitchLabelShouldBeLastLabelInSection.cs index 8b621fe288..779da72489 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/DefaultSwitchLabelShouldBeLastLabelInSection.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/DefaultSwitchLabelShouldBeLastLabelInSection.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Text.RegularExpressions; diff --git a/src/Tests.Old/Analyzers.Tests.Old/FormatDocumentationSummaryOnSingleLine.cs b/src/Tests.Old/Analyzers.Tests.Old/FormatDocumentationSummaryOnSingleLine.cs index 9055cc83d9..c3fda85ed5 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/FormatDocumentationSummaryOnSingleLine.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/FormatDocumentationSummaryOnSingleLine.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Analyzers.Tests { diff --git a/src/Tests.Old/Analyzers.Tests.Old/GenerateCombinedEnumMember.cs b/src/Tests.Old/Analyzers.Tests.Old/GenerateCombinedEnumMember.cs index 69fb864d1a..c2e447415e 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/GenerateCombinedEnumMember.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/GenerateCombinedEnumMember.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Analyzers.Tests.Old/GenerateEnumMember.cs b/src/Tests.Old/Analyzers.Tests.Old/GenerateEnumMember.cs index 776045dae3..e04a0f116c 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/GenerateEnumMember.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/GenerateEnumMember.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Analyzers.Tests.Old/GenerateEnumValues.cs b/src/Tests.Old/Analyzers.Tests.Old/GenerateEnumValues.cs index 22bacfd167..0460749dce 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/GenerateEnumValues.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/GenerateEnumValues.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Analyzers.Tests.Old/ImplementExceptionConstructors.cs b/src/Tests.Old/Analyzers.Tests.Old/ImplementExceptionConstructors.cs index f6052c2215..40b6a0d9cd 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/ImplementExceptionConstructors.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/ImplementExceptionConstructors.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Analyzers.Tests.Old/InlineLocalVariable.cs b/src/Tests.Old/Analyzers.Tests.Old/InlineLocalVariable.cs index 28d0236a6b..c8b3df63e1 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/InlineLocalVariable.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/InlineLocalVariable.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Analyzers.Tests.Old/MakeClassStatic.cs b/src/Tests.Old/Analyzers.Tests.Old/MakeClassStatic.cs index 87dc4309c1..f867cfb97b 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/MakeClassStatic.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/MakeClassStatic.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Analyzers.Tests.Old/MakeClassStatic2.cs b/src/Tests.Old/Analyzers.Tests.Old/MakeClassStatic2.cs index b63b501243..9fcb715436 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/MakeClassStatic2.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/MakeClassStatic2.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Analyzers.Tests.Old/MarkFieldAsConst.cs b/src/Tests.Old/Analyzers.Tests.Old/MarkFieldAsConst.cs index bd37c86cc1..3997d2b27d 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/MarkFieldAsConst.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/MarkFieldAsConst.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Analyzers.Tests.Old/MarkLocalVariableAsConst.cs b/src/Tests.Old/Analyzers.Tests.Old/MarkLocalVariableAsConst.cs index ae54882957..2514022e4f 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/MarkLocalVariableAsConst.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/MarkLocalVariableAsConst.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Analyzers.Tests.Old/MergeElseClauseWithNestedIfStatement.cs b/src/Tests.Old/Analyzers.Tests.Old/MergeElseClauseWithNestedIfStatement.cs index f2fb20833a..accebe09c5 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/MergeElseClauseWithNestedIfStatement.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/MergeElseClauseWithNestedIfStatement.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable RCS1002, RCS1004, RCS1118, RCS1176 diff --git a/src/Tests.Old/Analyzers.Tests.Old/MergeIfStatementWithNestedIfStatement.cs b/src/Tests.Old/Analyzers.Tests.Old/MergeIfStatementWithNestedIfStatement.cs index 988b295234..48de892fc9 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/MergeIfStatementWithNestedIfStatement.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/MergeIfStatementWithNestedIfStatement.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable RCS1001, RCS1002, RCS1040, RCS1118, RCS1176 diff --git a/src/Tests.Old/Analyzers.Tests.Old/MergeInterpolationIntoInterpolatedString.cs b/src/Tests.Old/Analyzers.Tests.Old/MergeInterpolationIntoInterpolatedString.cs index 48889a327c..5f4269ba62 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/MergeInterpolationIntoInterpolatedString.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/MergeInterpolationIntoInterpolatedString.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Analyzers.Tests { diff --git a/src/Tests.Old/Analyzers.Tests.Old/MergeLocalDeclarationWithAssignment.cs b/src/Tests.Old/Analyzers.Tests.Old/MergeLocalDeclarationWithAssignment.cs index e14acb7c9c..b677ffbbbe 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/MergeLocalDeclarationWithAssignment.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/MergeLocalDeclarationWithAssignment.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Analyzers.Tests.Old/MergeSwitchSectionsWithEquivalentContent.cs b/src/Tests.Old/Analyzers.Tests.Old/MergeSwitchSectionsWithEquivalentContent.cs index 141065ddc8..241b987497 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/MergeSwitchSectionsWithEquivalentContent.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/MergeSwitchSectionsWithEquivalentContent.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Analyzers.Tests.Old/ParameterNameDiffersFromBase.cs b/src/Tests.Old/Analyzers.Tests.Old/ParameterNameDiffersFromBase.cs index 103d2ce3e0..0610fd34b5 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/ParameterNameDiffersFromBase.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/ParameterNameDiffersFromBase.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Analyzers.Tests.Old/Properties/AssemblyInfo.cs b/src/Tests.Old/Analyzers.Tests.Old/Properties/AssemblyInfo.cs index a121109c46..8715287878 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/Properties/AssemblyInfo.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Resources; using System.Reflection; using System.Runtime.CompilerServices; diff --git a/src/Tests.Old/Analyzers.Tests.Old/ReduceIfNesting.cs b/src/Tests.Old/Analyzers.Tests.Old/ReduceIfNesting.cs index 4ae5b77ff8..4a731d1495 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/ReduceIfNesting.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/ReduceIfNesting.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable CS0168, RCS1002, RCS1006, RCS1016, RCS1048, RCS1049, RCS1090, RCS1111, RCS1118, RCS1163, RCS1176, RCS1177, RCS1187 diff --git a/src/Tests.Old/Analyzers.Tests.Old/RemoveArgumentListFromAttribute.cs b/src/Tests.Old/Analyzers.Tests.Old/RemoveArgumentListFromAttribute.cs index dc2c3e2a55..7a3c81d669 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/RemoveArgumentListFromAttribute.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/RemoveArgumentListFromAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Analyzers.Tests.Old/RemoveBraces.cs b/src/Tests.Old/Analyzers.Tests.Old/RemoveBraces.cs index fe55d5fe58..feda37bfe9 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/RemoveBraces.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/RemoveBraces.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Analyzers.Tests.Old/RemoveEnumDefaultUnderlyingType.cs b/src/Tests.Old/Analyzers.Tests.Old/RemoveEnumDefaultUnderlyingType.cs index 0d3bdf79bf..43261261f9 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/RemoveEnumDefaultUnderlyingType.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/RemoveEnumDefaultUnderlyingType.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Analyzers.Tests { diff --git a/src/Tests.Old/Analyzers.Tests.Old/RemoveFileWithNoCode.cs b/src/Tests.Old/Analyzers.Tests.Old/RemoveFileWithNoCode.cs index 26b83cf914..84d41c7c9a 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/RemoveFileWithNoCode.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/RemoveFileWithNoCode.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. //namespace Roslynator.CSharp.Analyzers.Tests //{ diff --git a/src/Tests.Old/Analyzers.Tests.Old/RemoveFileWithNoCode2.cs b/src/Tests.Old/Analyzers.Tests.Old/RemoveFileWithNoCode2.cs index ad27ffa987..abdefc46ad 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/RemoveFileWithNoCode2.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/RemoveFileWithNoCode2.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #if ABC // Copyright(c) Josef Pihrt.All rights reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. diff --git a/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantAsOperator.cs b/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantAsOperator.cs index 1b40b4a4bf..db78463226 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantAsOperator.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantAsOperator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantBaseConstructorCall.cs b/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantBaseConstructorCall.cs index d4c7b54481..5a7afc31c5 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantBaseConstructorCall.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantBaseConstructorCall.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Analyzers.Tests { diff --git a/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantBaseInterface.cs b/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantBaseInterface.cs index d0042978d9..86351bf7a1 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantBaseInterface.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantBaseInterface.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantBooleanLiteral.cs b/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantBooleanLiteral.cs index 008ae3d255..c50ff48925 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantBooleanLiteral.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantBooleanLiteral.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable RCS1118, RCS1023 diff --git a/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantBraces.cs b/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantBraces.cs index ec88179c4c..3f64e08b1b 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantBraces.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantBraces.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Analyzers.Tests { diff --git a/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantConstructor.cs b/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantConstructor.cs index 56f5a1064f..32590f4352 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantConstructor.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantConstructor.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Analyzers.Tests { diff --git a/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantDefaultSwitchSection.cs b/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantDefaultSwitchSection.cs index bb6d3a678b..307e8417f5 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantDefaultSwitchSection.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantDefaultSwitchSection.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.ComponentModel; diff --git a/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantDisposeOrCloseCall.cs b/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantDisposeOrCloseCall.cs index 46252315d9..2663f90bff 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantDisposeOrCloseCall.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantDisposeOrCloseCall.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantEmptyLine.cs b/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantEmptyLine.cs index 241e4fe3cd..3b89169534 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantEmptyLine.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantEmptyLine.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantOverridingMember.cs b/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantOverridingMember.cs index 4721eae632..96a866d349 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantOverridingMember.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantOverridingMember.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantSealedModifier.cs b/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantSealedModifier.cs index 4e6a035903..bf766ca79f 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantSealedModifier.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantSealedModifier.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantStatement.cs b/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantStatement.cs index ebe608d3a6..921cad8ffc 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantStatement.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/RemoveRedundantStatement.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Analyzers.Tests.Old/RemoveUnnecessaryCaseLabel.cs b/src/Tests.Old/Analyzers.Tests.Old/RemoveUnnecessaryCaseLabel.cs index f3d63f765a..3962bd5973 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/RemoveUnnecessaryCaseLabel.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/RemoveUnnecessaryCaseLabel.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Analyzers.Tests { diff --git a/src/Tests.Old/Analyzers.Tests.Old/RemoveUnnecessaryElseClause.cs b/src/Tests.Old/Analyzers.Tests.Old/RemoveUnnecessaryElseClause.cs index c31ce11609..33e4614f7a 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/RemoveUnnecessaryElseClause.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/RemoveUnnecessaryElseClause.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.IO; diff --git a/src/Tests.Old/Analyzers.Tests.Old/ReorderModifiers.cs b/src/Tests.Old/Analyzers.Tests.Old/ReorderModifiers.cs index badda9ada6..44b5cc13f7 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/ReorderModifiers.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/ReorderModifiers.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.ObjectModel; diff --git a/src/Tests.Old/Analyzers.Tests.Old/ReorderNamedArguments.cs b/src/Tests.Old/Analyzers.Tests.Old/ReorderNamedArguments.cs index c360bd61d5..bebe8ccae8 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/ReorderNamedArguments.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/ReorderNamedArguments.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.IO; using System.Text; diff --git a/src/Tests.Old/Analyzers.Tests.Old/ReorderTypeParameterConstraints.cs b/src/Tests.Old/Analyzers.Tests.Old/ReorderTypeParameterConstraints.cs index d8a8dbf4d4..b4af2e943d 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/ReorderTypeParameterConstraints.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/ReorderTypeParameterConstraints.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Analyzers.Tests { diff --git a/src/Tests.Old/Analyzers.Tests.Old/ReplaceCommentWithDocumentationComment.cs b/src/Tests.Old/Analyzers.Tests.Old/ReplaceCommentWithDocumentationComment.cs index 794daddd43..51b9088ffc 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/ReplaceCommentWithDocumentationComment.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/ReplaceCommentWithDocumentationComment.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Analyzers.Tests.Old/ReplaceForEachWithFor.cs b/src/Tests.Old/Analyzers.Tests.Old/ReplaceForEachWithFor.cs index 39a5624325..883c266bad 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/ReplaceForEachWithFor.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/ReplaceForEachWithFor.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; diff --git a/src/Tests.Old/Analyzers.Tests.Old/ReplaceIfStatementWithAssignment.cs b/src/Tests.Old/Analyzers.Tests.Old/ReplaceIfStatementWithAssignment.cs index d83329dfe1..d00a85f6d5 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/ReplaceIfStatementWithAssignment.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/ReplaceIfStatementWithAssignment.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable CS0219, RCS1003, RCS1004, RCS1007, RCS1118, RCS1126, RCS1176 diff --git a/src/Tests.Old/Analyzers.Tests.Old/ReplaceIfStatementWithReturnStatement.cs b/src/Tests.Old/Analyzers.Tests.Old/ReplaceIfStatementWithReturnStatement.cs index d8c2ea328c..6e3ef25506 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/ReplaceIfStatementWithReturnStatement.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/ReplaceIfStatementWithReturnStatement.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable CS0162, RCS1002, RCS1004, RCS1007, RCS1098, RCS1111, RCS1118, RCS1126, RCS1128, RCS1176 diff --git a/src/Tests.Old/Analyzers.Tests.Old/ReplaceInterpolatedStringWithConcatenation.cs b/src/Tests.Old/Analyzers.Tests.Old/ReplaceInterpolatedStringWithConcatenation.cs index f3e7817d8f..3814387978 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/ReplaceInterpolatedStringWithConcatenation.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/ReplaceInterpolatedStringWithConcatenation.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable RCS1118, RCS1176, RCS1198, RCS1214 diff --git a/src/Tests.Old/Analyzers.Tests.Old/ReplacePropertyWithAutoProperty.cs b/src/Tests.Old/Analyzers.Tests.Old/ReplacePropertyWithAutoProperty.cs index 07000c010b..7dd6c5ae80 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/ReplacePropertyWithAutoProperty.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/ReplacePropertyWithAutoProperty.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Analyzers.Tests { diff --git a/src/Tests.Old/Analyzers.Tests.Old/ReturnTaskInsteadOfNull.cs b/src/Tests.Old/Analyzers.Tests.Old/ReturnTaskInsteadOfNull.cs index 373a17ebe7..62bb2edbbb 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/ReturnTaskInsteadOfNull.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/ReturnTaskInsteadOfNull.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading.Tasks; diff --git a/src/Tests.Old/Analyzers.Tests.Old/SimplifyBooleanComparison.cs b/src/Tests.Old/Analyzers.Tests.Old/SimplifyBooleanComparison.cs index db67a22cc8..ef44301b2e 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/SimplifyBooleanComparison.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/SimplifyBooleanComparison.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable RCS1118, RCS1023 diff --git a/src/Tests.Old/Analyzers.Tests.Old/SimplifyCoalesceExpression.cs b/src/Tests.Old/Analyzers.Tests.Old/SimplifyCoalesceExpression.cs index db970db037..020e0e699f 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/SimplifyCoalesceExpression.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/SimplifyCoalesceExpression.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Analyzers.Tests.Old/SimplifyLambdaExpression.cs b/src/Tests.Old/Analyzers.Tests.Old/SimplifyLambdaExpression.cs index 7da012367b..7ead0c5136 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/SimplifyLambdaExpression.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/SimplifyLambdaExpression.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Analyzers.Tests.Old/SortEnumMembers.cs b/src/Tests.Old/Analyzers.Tests.Old/SortEnumMembers.cs index d0cba7a725..16a9fb4ca7 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/SortEnumMembers.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/SortEnumMembers.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Analyzers.Tests.Old/SplitVariableDeclaration.cs b/src/Tests.Old/Analyzers.Tests.Old/SplitVariableDeclaration.cs index d8f8f98191..4b6631d457 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/SplitVariableDeclaration.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/SplitVariableDeclaration.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Analyzers.Tests { diff --git a/src/Tests.Old/Analyzers.Tests.Old/StaticMemberInGenericTypeShouldUseTypeParameter.cs b/src/Tests.Old/Analyzers.Tests.Old/StaticMemberInGenericTypeShouldUseTypeParameter.cs index b31cf889cf..d471cd3d00 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/StaticMemberInGenericTypeShouldUseTypeParameter.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/StaticMemberInGenericTypeShouldUseTypeParameter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Analyzers.Tests.Old/ThrowingOfNewNotImplementedException.cs b/src/Tests.Old/Analyzers.Tests.Old/ThrowingOfNewNotImplementedException.cs index e3f500cca4..bdbfb6f7cb 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/ThrowingOfNewNotImplementedException.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/ThrowingOfNewNotImplementedException.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Analyzers.Tests.Old/Tuple.cs b/src/Tests.Old/Analyzers.Tests.Old/Tuple.cs index fbf5773285..65eb764418 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/Tuple.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/Tuple.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; diff --git a/src/Tests.Old/Analyzers.Tests.Old/UnconstrainedTypeParameterCheckedForNull.cs b/src/Tests.Old/Analyzers.Tests.Old/UnconstrainedTypeParameterCheckedForNull.cs index 6d24495ff1..a32200e1db 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/UnconstrainedTypeParameterCheckedForNull.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/UnconstrainedTypeParameterCheckedForNull.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; diff --git a/src/Tests.Old/Analyzers.Tests.Old/UnnecessaryInterpolatedString.cs b/src/Tests.Old/Analyzers.Tests.Old/UnnecessaryInterpolatedString.cs index c906350e27..c424037501 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/UnnecessaryInterpolatedString.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/UnnecessaryInterpolatedString.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable RCS1118, RCS1176, RCS1198, RCS1217 diff --git a/src/Tests.Old/Analyzers.Tests.Old/UnnecessaryUnsafeContext.cs b/src/Tests.Old/Analyzers.Tests.Old/UnnecessaryUnsafeContext.cs index fe5c22b0f2..dc0096bdb4 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/UnnecessaryUnsafeContext.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/UnnecessaryUnsafeContext.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Analyzers.Tests.Old/UnusedMemberDeclaration.cs b/src/Tests.Old/Analyzers.Tests.Old/UnusedMemberDeclaration.cs index 86f04aa2f0..5ed393549e 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/UnusedMemberDeclaration.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/UnusedMemberDeclaration.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/Tests.Old/Analyzers.Tests.Old/UnusedParameter.cs b/src/Tests.Old/Analyzers.Tests.Old/UnusedParameter.cs index 9c6c2166fa..ae18238546 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/UnusedParameter.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/UnusedParameter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Analyzers.Tests.Old/UnusedTypeParameter.cs b/src/Tests.Old/Analyzers.Tests.Old/UnusedTypeParameter.cs index ca589e160c..81a8731724 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/UnusedTypeParameter.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/UnusedTypeParameter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Analyzers.Tests.Old/UseCoalesceExpressionInsteadOfIf.cs b/src/Tests.Old/Analyzers.Tests.Old/UseCoalesceExpressionInsteadOfIf.cs index 616c748ddc..7fe552ab52 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/UseCoalesceExpressionInsteadOfIf.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/UseCoalesceExpressionInsteadOfIf.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections; using System.Collections.Generic; diff --git a/src/Tests.Old/Analyzers.Tests.Old/UseConstantInsteadOfField.cs b/src/Tests.Old/Analyzers.Tests.Old/UseConstantInsteadOfField.cs index 2255f941fe..5ce83993b1 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/UseConstantInsteadOfField.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/UseConstantInsteadOfField.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable CS0109, RCS1016, RCS1018, RCS1045, RCS1081, RCS1101, RCS1169 diff --git a/src/Tests.Old/Analyzers.Tests.Old/UseExclusiveOrOperator.cs b/src/Tests.Old/Analyzers.Tests.Old/UseExclusiveOrOperator.cs index 17e6e02d00..27350b3230 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/UseExclusiveOrOperator.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/UseExclusiveOrOperator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable RCS1123 diff --git a/src/Tests.Old/Analyzers.Tests.Old/UseIsOperatorInsteadOfAsOperator.cs b/src/Tests.Old/Analyzers.Tests.Old/UseIsOperatorInsteadOfAsOperator.cs index 6e759e4a30..ba38145706 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/UseIsOperatorInsteadOfAsOperator.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/UseIsOperatorInsteadOfAsOperator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable RCS1023 diff --git a/src/Tests.Old/Analyzers.Tests.Old/UseLambdaExpressionInsteadOfAnonymousMethod.cs b/src/Tests.Old/Analyzers.Tests.Old/UseLambdaExpressionInsteadOfAnonymousMethod.cs index 09ad367296..27258da60c 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/UseLambdaExpressionInsteadOfAnonymousMethod.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/UseLambdaExpressionInsteadOfAnonymousMethod.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Analyzers.Tests.Old/UseNameOfOperator.cs b/src/Tests.Old/Analyzers.Tests.Old/UseNameOfOperator.cs index 4f2dccbb97..646662d54a 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/UseNameOfOperator.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/UseNameOfOperator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Analyzers.Tests.Old/UseReturnInsteadOfAssignment.cs b/src/Tests.Old/Analyzers.Tests.Old/UseReturnInsteadOfAssignment.cs index 20bc1aa177..990686e700 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/UseReturnInsteadOfAssignment.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/UseReturnInsteadOfAssignment.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Tests.Old/Analyzers.Tests.Old/UseStringComparison.cs b/src/Tests.Old/Analyzers.Tests.Old/UseStringComparison.cs index 3d7792e676..3e3f652878 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/UseStringComparison.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/UseStringComparison.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Analyzers.Tests.Old/UseStringIsNullOrEmptyMethod.cs b/src/Tests.Old/Analyzers.Tests.Old/UseStringIsNullOrEmptyMethod.cs index 65f098c7ba..423c0109bb 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/UseStringIsNullOrEmptyMethod.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/UseStringIsNullOrEmptyMethod.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable RCS1023, RCS1036, RCS1078, RCS1146, RCS1156 diff --git a/src/Tests.Old/Analyzers.Tests.Old/ValueTypeObjectIsNeverEqualToNull.cs b/src/Tests.Old/Analyzers.Tests.Old/ValueTypeObjectIsNeverEqualToNull.cs index 59f4bc6864..25f56d04fb 100644 --- a/src/Tests.Old/Analyzers.Tests.Old/ValueTypeObjectIsNeverEqualToNull.cs +++ b/src/Tests.Old/Analyzers.Tests.Old/ValueTypeObjectIsNeverEqualToNull.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/AddArgumentList.cs b/src/Tests.Old/CodeFixes.Tests.Old/AddArgumentList.cs index b8fe992ca5..bc84b65191 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/AddArgumentList.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/AddArgumentList.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/AddBody.cs b/src/Tests.Old/CodeFixes.Tests.Old/AddBody.cs index 67af55938b..7abba5232b 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/AddBody.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/AddBody.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/AddBracesToDeclarationOrLabeledStatement.cs b/src/Tests.Old/CodeFixes.Tests.Old/AddBracesToDeclarationOrLabeledStatement.cs index ca3abe3f2f..8d618fa082 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/AddBracesToDeclarationOrLabeledStatement.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/AddBracesToDeclarationOrLabeledStatement.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/AddBreakStatementToSwitchSection.cs b/src/Tests.Old/CodeFixes.Tests.Old/AddBreakStatementToSwitchSection.cs index daa48acdbb..e467a8807f 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/AddBreakStatementToSwitchSection.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/AddBreakStatementToSwitchSection.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/AddComparisonWithBooleanLiteralRefactoring.cs b/src/Tests.Old/CodeFixes.Tests.Old/AddComparisonWithBooleanLiteralRefactoring.cs index 9bfd16341a..e3abd128d2 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/AddComparisonWithBooleanLiteralRefactoring.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/AddComparisonWithBooleanLiteralRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/AddDocumentationComment.cs b/src/Tests.Old/CodeFixes.Tests.Old/AddDocumentationComment.cs index b6a159d1f4..4874fea9ea 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/AddDocumentationComment.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/AddDocumentationComment.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/AddOutModifierToArgument.cs b/src/Tests.Old/CodeFixes.Tests.Old/AddOutModifierToArgument.cs index fdeff4146b..0d9b5a3413 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/AddOutModifierToArgument.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/AddOutModifierToArgument.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/AddPartialModifier.cs b/src/Tests.Old/CodeFixes.Tests.Old/AddPartialModifier.cs index ebeb184fa3..f8bd394e91 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/AddPartialModifier.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/AddPartialModifier.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/AddReturnStatementThatReturnsDefaultValue.cs b/src/Tests.Old/CodeFixes.Tests.Old/AddReturnStatementThatReturnsDefaultValue.cs index d132db01de..d493455f6a 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/AddReturnStatementThatReturnsDefaultValue.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/AddReturnStatementThatReturnsDefaultValue.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/AddSemicolon.cs b/src/Tests.Old/CodeFixes.Tests.Old/AddSemicolon.cs index 2e03a6c046..6935b1edcb 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/AddSemicolon.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/AddSemicolon.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. extern alias x diff --git a/src/Tests.Old/CodeFixes.Tests.Old/AddStaticModifier.cs b/src/Tests.Old/CodeFixes.Tests.Old/AddStaticModifier.cs index 013bb96d80..41113b01ff 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/AddStaticModifier.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/AddStaticModifier.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/AddTypeArgument.cs b/src/Tests.Old/CodeFixes.Tests.Old/AddTypeArgument.cs index dcd9e777fb..154de7a24c 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/AddTypeArgument.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/AddTypeArgument.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0021_CannotApplyIndexingToExpression.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0021_CannotApplyIndexingToExpression.cs index c0adaa5c58..66718a46a8 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0021_CannotApplyIndexingToExpression.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0021_CannotApplyIndexingToExpression.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0023_OperatorCannotBeAppliedToOperandOfType.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0023_OperatorCannotBeAppliedToOperandOfType.cs index 939af80895..4fa4eb2eb6 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0023_OperatorCannotBeAppliedToOperandOfType.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0023_OperatorCannotBeAppliedToOperandOfType.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0029_CannotImplicitlyConvertType.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0029_CannotImplicitlyConvertType.cs index 26df972edd..06ad766421 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0029_CannotImplicitlyConvertType.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0029_CannotImplicitlyConvertType.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0030_CannotConvertType.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0030_CannotConvertType.cs index 6741d3dc8f..06e9ad4f44 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0030_CannotConvertType.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0030_CannotConvertType.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0077_AsOperatorMustBeUsedWithReferenceTypeOrNullableType.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0077_AsOperatorMustBeUsedWithReferenceTypeOrNullableType.cs index 8bea44c3c2..c5eb2f589e 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0077_AsOperatorMustBeUsedWithReferenceTypeOrNullableType.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0077_AsOperatorMustBeUsedWithReferenceTypeOrNullableType.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Text; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0101_NamespaceAlreadyContainsDefinition.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0101_NamespaceAlreadyContainsDefinition.cs index 77e0010926..848bd0f2fa 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0101_NamespaceAlreadyContainsDefinition.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0101_NamespaceAlreadyContainsDefinition.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0101_NamespaceAlreadyContainsDefinition2.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0101_NamespaceAlreadyContainsDefinition2.cs index b835dc1bb6..2461ab0fb5 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0101_NamespaceAlreadyContainsDefinition2.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0101_NamespaceAlreadyContainsDefinition2.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0102_TypeAlreadyContainsDefinition.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0102_TypeAlreadyContainsDefinition.cs index ec65eeee8b..e887171c9b 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0102_TypeAlreadyContainsDefinition.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0102_TypeAlreadyContainsDefinition.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0102_TypeAlreadyContainsDefinition2.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0102_TypeAlreadyContainsDefinition2.cs index 5bf2e2295e..5156497238 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0102_TypeAlreadyContainsDefinition2.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0102_TypeAlreadyContainsDefinition2.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0103_NameDoesNotExistInCurrentContext.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0103_NameDoesNotExistInCurrentContext.cs index b19a864c18..8d0ba787d7 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0103_NameDoesNotExistInCurrentContext.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0103_NameDoesNotExistInCurrentContext.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0115_NoSuitableMethodFoundToOverride.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0115_NoSuitableMethodFoundToOverride.cs index e72068ecfe..b6e7ee5879 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0115_NoSuitableMethodFoundToOverride.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0115_NoSuitableMethodFoundToOverride.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0120_ObjectReferenceIsRequiredForNonStaticMember.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0120_ObjectReferenceIsRequiredForNonStaticMember.cs index 4f43e904d8..252c896024 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0120_ObjectReferenceIsRequiredForNonStaticMember.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0120_ObjectReferenceIsRequiredForNonStaticMember.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0120_ObjectReferenceIsRequiredForNonStaticMember2.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0120_ObjectReferenceIsRequiredForNonStaticMember2.cs index 9d7e86d227..ec36972dac 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0120_ObjectReferenceIsRequiredForNonStaticMember2.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0120_ObjectReferenceIsRequiredForNonStaticMember2.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0126_ObjectOfTypeConvertibleToTypeIsRequired.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0126_ObjectOfTypeConvertibleToTypeIsRequired.cs index c4c2c47b0a..562e9cfbaf 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0126_ObjectOfTypeConvertibleToTypeIsRequired.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0126_ObjectOfTypeConvertibleToTypeIsRequired.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0133_ExpressionBeingAssignedMustBeConstant.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0133_ExpressionBeingAssignedMustBeConstant.cs index f52cc36774..f9ba74101c 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0133_ExpressionBeingAssignedMustBeConstant.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0133_ExpressionBeingAssignedMustBeConstant.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0139_NoEnclosingLoopOutOfWhichToBreakOrContinue.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0139_NoEnclosingLoopOutOfWhichToBreakOrContinue.cs index 1820186c39..19bca243f9 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0139_NoEnclosingLoopOutOfWhichToBreakOrContinue.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0139_NoEnclosingLoopOutOfWhichToBreakOrContinue.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0152_SwitchStatementContainsMultipleCasesWithSameLabelValue.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0152_SwitchStatementContainsMultipleCasesWithSameLabelValue.cs index 8512c070b8..afb648f268 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0152_SwitchStatementContainsMultipleCasesWithSameLabelValue.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0152_SwitchStatementContainsMultipleCasesWithSameLabelValue.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Text.RegularExpressions; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0173_TypeOfConditionalExpressionCannotBeDetermined.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0173_TypeOfConditionalExpressionCannotBeDetermined.cs index 29b48c05aa..3c700c1d3b 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0173_TypeOfConditionalExpressionCannotBeDetermined.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0173_TypeOfConditionalExpressionCannotBeDetermined.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Text.RegularExpressions; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0216_OperatorRequiresMatchingOperatorToAlsoBeDefined.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0216_OperatorRequiresMatchingOperatorToAlsoBeDefined.cs index e3983d97f8..02bf1adfc2 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0216_OperatorRequiresMatchingOperatorToAlsoBeDefined.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0216_OperatorRequiresMatchingOperatorToAlsoBeDefined.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable CS0660, CS0661 diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0238_MemberCannotBeSealedBecauseItIsNotOverride.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0238_MemberCannotBeSealedBecauseItIsNotOverride.cs index 9e66a9a753..e1cf8d11a7 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0238_MemberCannotBeSealedBecauseItIsNotOverride.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0238_MemberCannotBeSealedBecauseItIsNotOverride.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0266_CannotImplicitlyConvertTypeExplicitConversionExists.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0266_CannotImplicitlyConvertTypeExplicitConversionExists.cs index 730200c401..f73e56ff8f 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0266_CannotImplicitlyConvertTypeExplicitConversionExists.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0266_CannotImplicitlyConvertTypeExplicitConversionExists.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0401_NewConstraintMustBeLastConstraintSpecified.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0401_NewConstraintMustBeLastConstraintSpecified.cs index 2d9ae5d24e..f333f6fdd9 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0401_NewConstraintMustBeLastConstraintSpecified.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0401_NewConstraintMustBeLastConstraintSpecified.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Text.RegularExpressions; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0405_DuplicateConstraintForTypeParameter.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0405_DuplicateConstraintForTypeParameter.cs index 6b0f6698a0..7e12056f47 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0405_DuplicateConstraintForTypeParameter.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0405_DuplicateConstraintForTypeParameter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Text.RegularExpressions; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0409_ConstraintClauseHasAlreadyBeenSpecified.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0409_ConstraintClauseHasAlreadyBeenSpecified.cs index f021bceba3..c21c7805db 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0409_ConstraintClauseHasAlreadyBeenSpecified.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0409_ConstraintClauseHasAlreadyBeenSpecified.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Text.RegularExpressions; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0449_ClassOrStructConstraintMustComeBeforeAnyOtherConstraints.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0449_ClassOrStructConstraintMustComeBeforeAnyOtherConstraints.cs index 02be3f3ca2..eb992b4b2a 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0449_ClassOrStructConstraintMustComeBeforeAnyOtherConstraints.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0449_ClassOrStructConstraintMustComeBeforeAnyOtherConstraints.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Text.RegularExpressions; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0450_CannotSpecifyBothConstraintClassAndClassOrStructConstraint.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0450_CannotSpecifyBothConstraintClassAndClassOrStructConstraint.cs index b9b05de0a6..64b7927d12 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0450_CannotSpecifyBothConstraintClassAndClassOrStructConstraint.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0450_CannotSpecifyBothConstraintClassAndClassOrStructConstraint.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Text.RegularExpressions; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0451_NewConstraintCannotBeUsedWithStructConstraint.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0451_NewConstraintCannotBeUsedWithStructConstraint.cs index b169408a6e..782678765a 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0451_NewConstraintCannotBeUsedWithStructConstraint.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0451_NewConstraintCannotBeUsedWithStructConstraint.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Text.RegularExpressions; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0472_ResultOfExpressionIsAlwaysConstantSinceValueIsNeverEqualToNull.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0472_ResultOfExpressionIsAlwaysConstantSinceValueIsNeverEqualToNull.cs index 9bd7ce1e40..70696f3dee 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0472_ResultOfExpressionIsAlwaysConstantSinceValueIsNeverEqualToNull.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0472_ResultOfExpressionIsAlwaysConstantSinceValueIsNeverEqualToNull.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0501_MemberMustDeclareBodyBecauseItIsNotMarkedAbstractExternOrPartial.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0501_MemberMustDeclareBodyBecauseItIsNotMarkedAbstractExternOrPartial.cs index 47d32af22b..7c4ea709e2 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0501_MemberMustDeclareBodyBecauseItIsNotMarkedAbstractExternOrPartial.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0501_MemberMustDeclareBodyBecauseItIsNotMarkedAbstractExternOrPartial.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0527_TypeInInterfaceListIsNotInterface.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0527_TypeInInterfaceListIsNotInterface.cs index d36eb41acd..76d3d74fa6 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0527_TypeInInterfaceListIsNotInterface.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0527_TypeInInterfaceListIsNotInterface.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0549_NewVirtualMemberInSealedClass.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0549_NewVirtualMemberInSealedClass.cs index 5389d1c2b4..4c50d050ea 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0549_NewVirtualMemberInSealedClass.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0549_NewVirtualMemberInSealedClass.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0573_CannotHaveInstancePropertyOrFieldInitializersInStruct.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0573_CannotHaveInstancePropertyOrFieldInitializersInStruct.cs index 39abc90c94..1a7573604b 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0573_CannotHaveInstancePropertyOrFieldInitializersInStruct.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0573_CannotHaveInstancePropertyOrFieldInitializersInStruct.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0574_NameOfDestructorMustMatchNameOfClass.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0574_NameOfDestructorMustMatchNameOfClass.cs index cbafdb6bd2..9f9838fba7 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0574_NameOfDestructorMustMatchNameOfClass.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0574_NameOfDestructorMustMatchNameOfClass.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0592_AttributeIsNotValidOnThisDeclarationType.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0592_AttributeIsNotValidOnThisDeclarationType.cs index 296601a6b5..38e984f3c6 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0592_AttributeIsNotValidOnThisDeclarationType.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0592_AttributeIsNotValidOnThisDeclarationType.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0660_TypeDefinesEqualityOperatorButDoesNotOverrideObjectEquals.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0660_TypeDefinesEqualityOperatorButDoesNotOverrideObjectEquals.cs index a52643be09..2d62e61bc7 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0660_TypeDefinesEqualityOperatorButDoesNotOverrideObjectEquals.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0660_TypeDefinesEqualityOperatorButDoesNotOverrideObjectEquals.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0661_TypeDefinesEqualityOperatorButDoesNotOverrideObjectGetHashCode.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0661_TypeDefinesEqualityOperatorButDoesNotOverrideObjectGetHashCode.cs index 59b0e7b79c..2afaf6aff8 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0661_TypeDefinesEqualityOperatorButDoesNotOverrideObjectGetHashCode.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0661_TypeDefinesEqualityOperatorButDoesNotOverrideObjectGetHashCode.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0693_TypeParameterHasSameNameAsTypeParameterFromOuterType.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0693_TypeParameterHasSameNameAsTypeParameterFromOuterType.cs index 50a6d8adfb..e7cff8116b 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0693_TypeParameterHasSameNameAsTypeParameterFromOuterType.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0693_TypeParameterHasSameNameAsTypeParameterFromOuterType.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading.Tasks; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0708_CannotDeclareInstanceMembersInStaticClass.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0708_CannotDeclareInstanceMembersInStaticClass.cs index 727a802a5b..22f9877c5b 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0708_CannotDeclareInstanceMembersInStaticClass.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0708_CannotDeclareInstanceMembersInStaticClass.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading.Tasks; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0710_StaticClassesCannotHaveInstanceConstructors.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0710_StaticClassesCannotHaveInstanceConstructors.cs index f11d8d5061..8e7e2764a0 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0710_StaticClassesCannotHaveInstanceConstructors.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0710_StaticClassesCannotHaveInstanceConstructors.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading.Tasks; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0713_StaticClassCannotDeriveFromType.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0713_StaticClassCannotDeriveFromType.cs index 2be21b392a..5997510b43 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0713_StaticClassCannotDeriveFromType.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0713_StaticClassCannotDeriveFromType.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0714_StaticClassCannotImplementInterfaces.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0714_StaticClassCannotImplementInterfaces.cs index a3b81cb98e..5234e28ad7 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0714_StaticClassCannotImplementInterfaces.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0714_StaticClassCannotImplementInterfaces.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0718_StaticTypesCannotBeUsedAsTypeArguments.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0718_StaticTypesCannotBeUsedAsTypeArguments.cs index 8f909ae408..dbd7b35e56 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0718_StaticTypesCannotBeUsedAsTypeArguments.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0718_StaticTypesCannotBeUsedAsTypeArguments.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0718_StaticTypesCannotBeUsedAsTypeArguments2.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0718_StaticTypesCannotBeUsedAsTypeArguments2.cs index 7ec71c5ebe..88c599cad0 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0718_StaticTypesCannotBeUsedAsTypeArguments2.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0718_StaticTypesCannotBeUsedAsTypeArguments2.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0750_PartialMethodCannotHaveAccessModifiersOrVirtualAbstractOverrideNewSealedOrExternModifiers.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0750_PartialMethodCannotHaveAccessModifiersOrVirtualAbstractOverrideNewSealedOrExternModifiers.cs index 1132d807cf..ac3a839ec0 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0750_PartialMethodCannotHaveAccessModifiersOrVirtualAbstractOverrideNewSealedOrExternModifiers.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0750_PartialMethodCannotHaveAccessModifiersOrVirtualAbstractOverrideNewSealedOrExternModifiers.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading.Tasks; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0759_NoDefiningDeclarationFoundForImplementingDeclarationOfPartialMethod.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0759_NoDefiningDeclarationFoundForImplementingDeclarationOfPartialMethod.cs index 9e17f7262d..a9ed4e8d04 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0759_NoDefiningDeclarationFoundForImplementingDeclarationOfPartialMethod.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0759_NoDefiningDeclarationFoundForImplementingDeclarationOfPartialMethod.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading.Tasks; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0766_PartialMethodsMustHaveVoidReturnType.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0766_PartialMethodsMustHaveVoidReturnType.cs index b58982d233..cac2698dae 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0766_PartialMethodsMustHaveVoidReturnType.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0766_PartialMethodsMustHaveVoidReturnType.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading.Tasks; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS0766_PartialMethodsMustHaveVoidReturnType2.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS0766_PartialMethodsMustHaveVoidReturnType2.cs index fa63ef594f..9dffe25f57 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS0766_PartialMethodsMustHaveVoidReturnType2.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS0766_PartialMethodsMustHaveVoidReturnType2.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading.Tasks; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS1031_TypeExpected.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS1031_TypeExpected.cs index 3cfca86494..f71fd7014a 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS1031_TypeExpected.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS1031_TypeExpected.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS1100_MethodHasParameterModifierThisWhichIsNotOnFirstParameter.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS1100_MethodHasParameterModifierThisWhichIsNotOnFirstParameter.cs index 95d4070a59..da591ed180 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS1100_MethodHasParameterModifierThisWhichIsNotOnFirstParameter.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS1100_MethodHasParameterModifierThisWhichIsNotOnFirstParameter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading.Tasks; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS1105_ExtensionMethodMustBeStatic.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS1105_ExtensionMethodMustBeStatic.cs index 702b1f8be5..7681446b92 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS1105_ExtensionMethodMustBeStatic.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS1105_ExtensionMethodMustBeStatic.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading.Tasks; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS1106_ExtensionMethodMustBeDefinedInNonGenericStaticClass.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS1106_ExtensionMethodMustBeDefinedInNonGenericStaticClass.cs index 19d0848656..92eeaa735b 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS1106_ExtensionMethodMustBeDefinedInNonGenericStaticClass.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS1106_ExtensionMethodMustBeDefinedInNonGenericStaticClass.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS1503_CannotConvertArgumentType.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS1503_CannotConvertArgumentType.cs index 62452f5558..b2b1ee33f8 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS1503_CannotConvertArgumentType.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS1503_CannotConvertArgumentType.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Text; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS1519_InvalidTokenInClassStructOrInterfaceMemberDeclaration.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS1519_InvalidTokenInClassStructOrInterfaceMemberDeclaration.cs index 9575558840..c51b877d26 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS1519_InvalidTokenInClassStructOrInterfaceMemberDeclaration.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS1519_InvalidTokenInClassStructOrInterfaceMemberDeclaration.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable IDE0040, RCS1213 diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS1526_NewExpressionRequiresParenthesesOrBracketsOrBracesAfterType.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS1526_NewExpressionRequiresParenthesesOrBracketsOrBracesAfterType.cs index 9a01494d1d..ccb7448194 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS1526_NewExpressionRequiresParenthesesOrBracketsOrBracesAfterType.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS1526_NewExpressionRequiresParenthesesOrBracketsOrBracesAfterType.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Text; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS1527_ElementsDefinedInNamespaceCannotBeExplicitlyDeclaredAsPrivateProtectedOrProtectedInternal.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS1527_ElementsDefinedInNamespaceCannotBeExplicitlyDeclaredAsPrivateProtectedOrProtectedInternal.cs index 3de1af6871..bdd844c1b5 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS1527_ElementsDefinedInNamespaceCannotBeExplicitlyDeclaredAsPrivateProtectedOrProtectedInternal.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS1527_ElementsDefinedInNamespaceCannotBeExplicitlyDeclaredAsPrivateProtectedOrProtectedInternal.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS1597_SemicolonAfterMethodOrAccessorBlockIsNotValid.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS1597_SemicolonAfterMethodOrAccessorBlockIsNotValid.cs index 841f067be8..29c80f272f 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS1597_SemicolonAfterMethodOrAccessorBlockIsNotValid.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS1597_SemicolonAfterMethodOrAccessorBlockIsNotValid.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS1621_YieldStatementCannotBeUsedInsideAnonymousMethodOrLambdaExpression.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS1621_YieldStatementCannotBeUsedInsideAnonymousMethodOrLambdaExpression.cs index 433821a859..1cd525581b 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS1621_YieldStatementCannotBeUsedInsideAnonymousMethodOrLambdaExpression.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS1621_YieldStatementCannotBeUsedInsideAnonymousMethodOrLambdaExpression.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS1623_IteratorsCannotHaveRefOrOutParameters.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS1623_IteratorsCannotHaveRefOrOutParameters.cs index b8f2b648e9..1ec3fb5e67 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS1623_IteratorsCannotHaveRefOrOutParameters.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS1623_IteratorsCannotHaveRefOrOutParameters.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS1689_AttributeIsNotValidOnThisDeclarationType.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS1689_AttributeIsNotValidOnThisDeclarationType.cs index 8042b50d7c..b721df1b01 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS1689_AttributeIsNotValidOnThisDeclarationType.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS1689_AttributeIsNotValidOnThisDeclarationType.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS1737_OptionalParametersMustAppearAfterAllRequiredParameters.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS1737_OptionalParametersMustAppearAfterAllRequiredParameters.cs index 5ca4600d4e..b38c6dc401 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS1737_OptionalParametersMustAppearAfterAllRequiredParameters.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS1737_OptionalParametersMustAppearAfterAllRequiredParameters.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS1743_CannotSpecifyDefaultValueForThisParameter.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS1743_CannotSpecifyDefaultValueForThisParameter.cs index 8817a87b3b..1078df04a9 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS1743_CannotSpecifyDefaultValueForThisParameter.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS1743_CannotSpecifyDefaultValueForThisParameter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable RCS1213 diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS1750_ValueCannotBeUsedAsDefaultParameter.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS1750_ValueCannotBeUsedAsDefaultParameter.cs index 934116011a..5c50128b99 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS1750_ValueCannotBeUsedAsDefaultParameter.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS1750_ValueCannotBeUsedAsDefaultParameter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS1751_CannotSpecifyDefaultValueForParameterArray.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS1751_CannotSpecifyDefaultValueForParameterArray.cs index 7e366b38d8..b50cd32506 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS1751_CannotSpecifyDefaultValueForParameterArray.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS1751_CannotSpecifyDefaultValueForParameterArray.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable RCS1213 diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS1988_AsyncMethodsCannotHaveRefOrOutParameters.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS1988_AsyncMethodsCannotHaveRefOrOutParameters.cs index b2b5247416..b473ebffcd 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS1988_AsyncMethodsCannotHaveRefOrOutParameters.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS1988_AsyncMethodsCannotHaveRefOrOutParameters.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading.Tasks; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS1994_AsyncModifierCanOnlyBeUsedInMethodsThatHaveBody.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS1994_AsyncModifierCanOnlyBeUsedInMethodsThatHaveBody.cs index e3a740ffb0..2daa56b30f 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS1994_AsyncModifierCanOnlyBeUsedInMethodsThatHaveBody.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS1994_AsyncModifierCanOnlyBeUsedInMethodsThatHaveBody.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading.Tasks; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CS8340_InstanceFieldsOfReadOnlyStructsMustBeReadOnly.cs b/src/Tests.Old/CodeFixes.Tests.Old/CS8340_InstanceFieldsOfReadOnlyStructsMustBeReadOnly.cs index 444f1f2ea6..6f21d39bb5 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CS8340_InstanceFieldsOfReadOnlyStructsMustBeReadOnly.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CS8340_InstanceFieldsOfReadOnlyStructsMustBeReadOnly.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/ChangeMemberTypeAccordingToReturnExpression.cs b/src/Tests.Old/CodeFixes.Tests.Old/ChangeMemberTypeAccordingToReturnExpression.cs index 7cbac42669..97b19d0f1b 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/ChangeMemberTypeAccordingToReturnExpression.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/ChangeMemberTypeAccordingToReturnExpression.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/ChangeTypeAccordingToInitializer.cs b/src/Tests.Old/CodeFixes.Tests.Old/ChangeTypeAccordingToInitializer.cs index 6c4bba50d6..a13fa52987 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/ChangeTypeAccordingToInitializer.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/ChangeTypeAccordingToInitializer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading.Tasks; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/ChangeTypeOfLocalVariable.cs b/src/Tests.Old/CodeFixes.Tests.Old/ChangeTypeOfLocalVariable.cs index fe03859b26..1ea9acf665 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/ChangeTypeOfLocalVariable.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/ChangeTypeOfLocalVariable.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/ChangeTypeOfParamsParameter.cs b/src/Tests.Old/CodeFixes.Tests.Old/ChangeTypeOfParamsParameter.cs index 7d752f0cde..1d9f9ffcb0 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/ChangeTypeOfParamsParameter.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/ChangeTypeOfParamsParameter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/CreateSingletonArray.cs b/src/Tests.Old/CodeFixes.Tests.Old/CreateSingletonArray.cs index 1605af01f7..c4b979eb4c 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/CreateSingletonArray.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/CreateSingletonArray.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/ExtractDeclarationFromUsingStatement.cs b/src/Tests.Old/CodeFixes.Tests.Old/ExtractDeclarationFromUsingStatement.cs index c204ad1632..88009c69c3 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/ExtractDeclarationFromUsingStatement.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/ExtractDeclarationFromUsingStatement.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/InitializeLocalVariableWithDefaultValue.cs b/src/Tests.Old/CodeFixes.Tests.Old/InitializeLocalVariableWithDefaultValue.cs index 7fdc6e4af3..293d0246d0 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/InitializeLocalVariableWithDefaultValue.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/InitializeLocalVariableWithDefaultValue.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/MakeContainingClassAbstract.cs b/src/Tests.Old/CodeFixes.Tests.Old/MakeContainingClassAbstract.cs index 98539765b5..3b0a3f8976 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/MakeContainingClassAbstract.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/MakeContainingClassAbstract.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/MarkOperatorAsPublicAndStatic.cs b/src/Tests.Old/CodeFixes.Tests.Old/MarkOperatorAsPublicAndStatic.cs index ec2fc82261..b362a8e753 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/MarkOperatorAsPublicAndStatic.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/MarkOperatorAsPublicAndStatic.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/MemberHidesInheritedMember.cs b/src/Tests.Old/CodeFixes.Tests.Old/MemberHidesInheritedMember.cs index 58f2168fa2..8e90e7a5a6 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/MemberHidesInheritedMember.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/MemberHidesInheritedMember.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/MemberTypeMustMatchOverriddenMemberType.cs b/src/Tests.Old/CodeFixes.Tests.Old/MemberTypeMustMatchOverriddenMemberType.cs index f7b6f735d0..d83912f12e 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/MemberTypeMustMatchOverriddenMemberType.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/MemberTypeMustMatchOverriddenMemberType.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/Modifiers.cs b/src/Tests.Old/CodeFixes.Tests.Old/Modifiers.cs index dc4024b794..7fcd0f9271 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/Modifiers.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/Modifiers.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/MoveBaseClassBeforeAnyInterface.cs b/src/Tests.Old/CodeFixes.Tests.Old/MoveBaseClassBeforeAnyInterface.cs index 02c93cecf0..4090233da3 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/MoveBaseClassBeforeAnyInterface.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/MoveBaseClassBeforeAnyInterface.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/OverridingMethodCannotChangeAccessModifiers.cs b/src/Tests.Old/CodeFixes.Tests.Old/OverridingMethodCannotChangeAccessModifiers.cs index 6fc6d6ed6f..5efa99af4a 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/OverridingMethodCannotChangeAccessModifiers.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/OverridingMethodCannotChangeAccessModifiers.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/PartialModifierCanOnlyAppearImmediatelyBeforeClassOrStructOrInterfaceOrVoid.cs b/src/Tests.Old/CodeFixes.Tests.Old/PartialModifierCanOnlyAppearImmediatelyBeforeClassOrStructOrInterfaceOrVoid.cs index f6237ad464..73504c6b92 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/PartialModifierCanOnlyAppearImmediatelyBeforeClassOrStructOrInterfaceOrVoid.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/PartialModifierCanOnlyAppearImmediatelyBeforeClassOrStructOrInterfaceOrVoid.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/Properties/AssemblyInfo.cs b/src/Tests.Old/CodeFixes.Tests.Old/Properties/AssemblyInfo.cs index 60b69c4698..d1ae0fc7d0 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/Properties/AssemblyInfo.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Resources; using System.Reflection; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/RemoveArgumentList.cs b/src/Tests.Old/CodeFixes.Tests.Old/RemoveArgumentList.cs index b756f4e89d..148ad50769 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/RemoveArgumentList.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/RemoveArgumentList.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/RemoveConstraintClause.cs b/src/Tests.Old/CodeFixes.Tests.Old/RemoveConstraintClause.cs index 8cfa2365a0..bb20af5aa2 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/RemoveConstraintClause.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/RemoveConstraintClause.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/RemoveDuplicateAttribute.cs b/src/Tests.Old/CodeFixes.Tests.Old/RemoveDuplicateAttribute.cs index 54bdbd704d..0c89aa373b 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/RemoveDuplicateAttribute.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/RemoveDuplicateAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Roslynator.CSharp.CodeFixes.Tests; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/RemoveDuplicateModifier.cs b/src/Tests.Old/CodeFixes.Tests.Old/RemoveDuplicateModifier.cs index 4baa3c4422..1f8cb9b246 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/RemoveDuplicateModifier.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/RemoveDuplicateModifier.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/RemoveImplementationFromAbstractMember.cs b/src/Tests.Old/CodeFixes.Tests.Old/RemoveImplementationFromAbstractMember.cs index c7d6d9f16c..5fab5f7bcd 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/RemoveImplementationFromAbstractMember.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/RemoveImplementationFromAbstractMember.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/RemoveMemberDeclaration.cs b/src/Tests.Old/CodeFixes.Tests.Old/RemoveMemberDeclaration.cs index 61e0476353..5b620aa031 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/RemoveMemberDeclaration.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/RemoveMemberDeclaration.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/RemoveNewModifier.cs b/src/Tests.Old/CodeFixes.Tests.Old/RemoveNewModifier.cs index 9f60ccbe69..07f9c9bab6 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/RemoveNewModifier.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/RemoveNewModifier.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/RemoveRedundantAssignment.cs b/src/Tests.Old/CodeFixes.Tests.Old/RemoveRedundantAssignment.cs index 622e2cf9bd..0497c84d53 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/RemoveRedundantAssignment.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/RemoveRedundantAssignment.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/RemoveRefModifier.cs b/src/Tests.Old/CodeFixes.Tests.Old/RemoveRefModifier.cs index 239757dadd..f46b32433b 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/RemoveRefModifier.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/RemoveRefModifier.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/RemoveReturnKeywordOrReturnExpression.cs b/src/Tests.Old/CodeFixes.Tests.Old/RemoveReturnKeywordOrReturnExpression.cs index 9d412c2f6a..9a4092825d 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/RemoveReturnKeywordOrReturnExpression.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/RemoveReturnKeywordOrReturnExpression.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Threading.Tasks; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/RemoveSwitchStatement.cs b/src/Tests.Old/CodeFixes.Tests.Old/RemoveSwitchStatement.cs index b0cf99c69d..aa5a40a9cd 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/RemoveSwitchStatement.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/RemoveSwitchStatement.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Text; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/RemoveUnreachableCode.cs b/src/Tests.Old/CodeFixes.Tests.Old/RemoveUnreachableCode.cs index 5fd8809a7b..30c32912b2 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/RemoveUnreachableCode.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/RemoveUnreachableCode.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable CS0219 diff --git a/src/Tests.Old/CodeFixes.Tests.Old/RemoveUnusedLabel.cs b/src/Tests.Old/CodeFixes.Tests.Old/RemoveUnusedLabel.cs index 89d6afe34e..f6a0aa3cd3 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/RemoveUnusedLabel.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/RemoveUnusedLabel.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/RemoveUnusedVariable.cs b/src/Tests.Old/CodeFixes.Tests.Old/RemoveUnusedVariable.cs index 17b55d4e0e..17efc7ac79 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/RemoveUnusedVariable.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/RemoveUnusedVariable.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Text; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/ReplaceNullLiteralExpressionWithDefaultExpression.cs b/src/Tests.Old/CodeFixes.Tests.Old/ReplaceNullLiteralExpressionWithDefaultExpression.cs index f1bbfaca6f..09cb3f3691 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/ReplaceNullLiteralExpressionWithDefaultExpression.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/ReplaceNullLiteralExpressionWithDefaultExpression.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/ReplaceStringLiteralWithCharacterLiteralRefactoring.cs b/src/Tests.Old/CodeFixes.Tests.Old/ReplaceStringLiteralWithCharacterLiteralRefactoring.cs index dd9a7e157e..6650e6902e 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/ReplaceStringLiteralWithCharacterLiteralRefactoring.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/ReplaceStringLiteralWithCharacterLiteralRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/StaticConstructorMustBeParameterless.cs b/src/Tests.Old/CodeFixes.Tests.Old/StaticConstructorMustBeParameterless.cs index dcf019863c..f75575d340 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/StaticConstructorMustBeParameterless.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/StaticConstructorMustBeParameterless.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/SynchronizeAccessibility.cs b/src/Tests.Old/CodeFixes.Tests.Old/SynchronizeAccessibility.cs index 94dee53ed0..8898d70d85 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/SynchronizeAccessibility.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/SynchronizeAccessibility.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/SynchronizeAccessibility.partial.cs b/src/Tests.Old/CodeFixes.Tests.Old/SynchronizeAccessibility.partial.cs index 94dee53ed0..8898d70d85 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/SynchronizeAccessibility.partial.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/SynchronizeAccessibility.partial.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/Unsafe.cs b/src/Tests.Old/CodeFixes.Tests.Old/Unsafe.cs index 5a403950b9..cff5088741 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/Unsafe.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/Unsafe.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/UseExplicitTypeInsteadOfVar.cs b/src/Tests.Old/CodeFixes.Tests.Old/UseExplicitTypeInsteadOfVar.cs index 0ee1881da5..e3d1e650a1 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/UseExplicitTypeInsteadOfVar.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/UseExplicitTypeInsteadOfVar.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/CodeFixes.Tests.Old/UseYieldReturnInsteadOfReturn.cs b/src/Tests.Old/CodeFixes.Tests.Old/UseYieldReturnInsteadOfReturn.cs index 5c0f4d5af1..18d3af0a7f 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/UseYieldReturnInsteadOfReturn.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/UseYieldReturnInsteadOfReturn.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections; using System.Collections.Generic; diff --git a/src/Tests.Old/CodeFixes.Tests.Old/WrapInUncheckedExpression.cs b/src/Tests.Old/CodeFixes.Tests.Old/WrapInUncheckedExpression.cs index e406a6a6a3..7d50383d47 100644 --- a/src/Tests.Old/CodeFixes.Tests.Old/WrapInUncheckedExpression.cs +++ b/src/Tests.Old/CodeFixes.Tests.Old/WrapInUncheckedExpression.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.CodeFixes.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/AddBracesRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/AddBracesRefactoring.cs index 561822e8c6..20f6f08b08 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/AddBracesRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/AddBracesRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.IO; diff --git a/src/Tests.Old/Refactorings.Tests.Old/AddBracesToIfElseRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/AddBracesToIfElseRefactoring.cs index bf41cd1613..399b71dc1e 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/AddBracesToIfElseRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/AddBracesToIfElseRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/AddBracesToSwitchSectionRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/AddBracesToSwitchSectionRefactoring.cs index 7c470dc6dc..5ac65095e6 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/AddBracesToSwitchSectionRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/AddBracesToSwitchSectionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.IO; diff --git a/src/Tests.Old/Refactorings.Tests.Old/AddBracesToSwitchSectionsRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/AddBracesToSwitchSectionsRefactoring.cs index 6b174cb191..5914df5c3c 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/AddBracesToSwitchSectionsRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/AddBracesToSwitchSectionsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.IO; diff --git a/src/Tests.Old/Refactorings.Tests.Old/AddCastExpressionRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/AddCastExpressionRefactoring.cs index 884b4d5455..027b42557c 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/AddCastExpressionRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/AddCastExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; diff --git a/src/Tests.Old/Refactorings.Tests.Old/AddDefaultValueToParameterRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/AddDefaultValueToParameterRefactoring.cs index 3aff74ea68..38d002828e 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/AddDefaultValueToParameterRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/AddDefaultValueToParameterRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Refactorings.Tests.Old/AddEmptyLineBetweenDeclarationsRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/AddEmptyLineBetweenDeclarationsRefactoring.cs index d7fd2aa9a5..deec5556b9 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/AddEmptyLineBetweenDeclarationsRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/AddEmptyLineBetweenDeclarationsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/AddExceptionToDocumentationCommentRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/AddExceptionToDocumentationCommentRefactoring.cs index 00e5ee5854..7e3b238695 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/AddExceptionToDocumentationCommentRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/AddExceptionToDocumentationCommentRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Refactorings.Tests.Old/AddIdentifierToVariableDeclarationRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/AddIdentifierToVariableDeclarationRefactoring.cs index ad1cf68014..5d12806e61 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/AddIdentifierToVariableDeclarationRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/AddIdentifierToVariableDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Xml; diff --git a/src/Tests.Old/Refactorings.Tests.Old/AddMemberToInterface.cs b/src/Tests.Old/Refactorings.Tests.Old/AddMemberToInterface.cs index d4ef5b8c27..bfec8b19b7 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/AddMemberToInterface.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/AddMemberToInterface.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Refactorings.Tests.Old/AddParameterNameToArgumentRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/AddParameterNameToArgumentRefactoring.cs index af59cce1d3..0eaa6e6eb4 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/AddParameterNameToArgumentRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/AddParameterNameToArgumentRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/AddParameterNameToParameterRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/AddParameterNameToParameterRefactoring.cs index b7a9fcb7e9..a4fd76909d 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/AddParameterNameToParameterRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/AddParameterNameToParameterRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/AddTypeParameterRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/AddTypeParameterRefactoring.cs index 1ae38298c0..0a107dea19 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/AddTypeParameterRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/AddTypeParameterRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable CS0168, CS0219, RCS1163 diff --git a/src/Tests.Old/Refactorings.Tests.Old/AddUsingDirectiveRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/AddUsingDirectiveRefactoring.cs index d942cd87ae..51a4b2cfce 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/AddUsingDirectiveRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/AddUsingDirectiveRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/CallConfigureAwaitRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/CallConfigureAwaitRefactoring.cs index c4f59b4916..6ebcba0097 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/CallConfigureAwaitRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/CallConfigureAwaitRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Threading.Tasks; diff --git a/src/Tests.Old/Refactorings.Tests.Old/CallExtensionMethodAsInstanceMethodRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/CallExtensionMethodAsInstanceMethodRefactoring.cs index 3f209123de..48eca6b0ca 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/CallExtensionMethodAsInstanceMethodRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/CallExtensionMethodAsInstanceMethodRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Linq; diff --git a/src/Tests.Old/Refactorings.Tests.Old/CallToMethodRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/CallToMethodRefactoring.cs index 7745fb71ac..477fcb8fe5 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/CallToMethodRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/CallToMethodRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Diagnostics; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ChangeAccessibilityRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ChangeAccessibilityRefactoring.cs index 2ae20bf521..140c902a5f 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ChangeAccessibilityRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ChangeAccessibilityRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable RCS1170 diff --git a/src/Tests.Old/Refactorings.Tests.Old/ChangeAccessibilityRefactoring.partial.cs b/src/Tests.Old/Refactorings.Tests.Old/ChangeAccessibilityRefactoring.partial.cs index 16aefa6a31..ffd1e9e1c6 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ChangeAccessibilityRefactoring.partial.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ChangeAccessibilityRefactoring.partial.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ChangeExplicitTypeToVarRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ChangeExplicitTypeToVarRefactoring.cs index 8532e45008..919f88f4d4 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ChangeExplicitTypeToVarRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ChangeExplicitTypeToVarRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ChangeForeachTypeAccordingToExpressionRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ChangeForeachTypeAccordingToExpressionRefactoring.cs index dc8ead8dbb..36808742ff 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ChangeForeachTypeAccordingToExpressionRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ChangeForeachTypeAccordingToExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ChangeTypeAccordingToExpressionRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ChangeTypeAccordingToExpressionRefactoring.cs index c0ae29f637..f220766411 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ChangeTypeAccordingToExpressionRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ChangeTypeAccordingToExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ChangeVarToExplicitTypeRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ChangeVarToExplicitTypeRefactoring.cs index 1b2e4ff7f4..83e91fa405 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ChangeVarToExplicitTypeRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ChangeVarToExplicitTypeRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading.Tasks; diff --git a/src/Tests.Old/Refactorings.Tests.Old/CheckExpressionForNullRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/CheckExpressionForNullRefactoring.cs index 40322529c1..3929665e0b 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/CheckExpressionForNullRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/CheckExpressionForNullRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/CollapseToInitializerRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/CollapseToInitializerRefactoring.cs index 48b565fa8d..47865ec098 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/CollapseToInitializerRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/CollapseToInitializerRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/CommentOutMemberRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/CommentOutMemberRefactoring.cs index bb5d2d4981..5f9579cc29 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/CommentOutMemberRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/CommentOutMemberRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/CommentOutStatementRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/CommentOutStatementRefactoring.cs index 715a911cd1..6cf327baac 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/CommentOutStatementRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/CommentOutStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Text.RegularExpressions; diff --git a/src/Tests.Old/Refactorings.Tests.Old/CopyDocumentationCommentFromBaseMemberRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/CopyDocumentationCommentFromBaseMemberRefactoring.cs index 44eba947b8..6235ae95bf 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/CopyDocumentationCommentFromBaseMemberRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/CopyDocumentationCommentFromBaseMemberRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Refactorings.Tests.Old/DocumentationRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/DocumentationRefactoring.cs index 190dd0ebcb..0ec579c912 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/DocumentationRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/DocumentationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Refactorings.Tests.Old/DuplicateArgumentRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/DuplicateArgumentRefactoring.cs index 908c9a5008..330670586c 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/DuplicateArgumentRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/DuplicateArgumentRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Refactorings.Tests.Old/DuplicateParameterRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/DuplicateParameterRefactoring.cs index fb309fd18c..c832353bbd 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/DuplicateParameterRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/DuplicateParameterRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; diff --git a/src/Tests.Old/Refactorings.Tests.Old/DuplicateStatementRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/DuplicateStatementRefactoring.cs index ad96ea8ac3..e60baa16df 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/DuplicateStatementRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/DuplicateStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.IO; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ExpandAssignmentExpressionRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ExpandAssignmentExpressionRefactoring.cs index 4c301b0b21..b1ad4dda98 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ExpandAssignmentExpressionRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ExpandAssignmentExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/ExpandCoalesceExpressionRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ExpandCoalesceExpressionRefactoring.cs index 04668cee95..fd42ad1a4e 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ExpandCoalesceExpressionRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ExpandCoalesceExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/ExpandEventRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ExpandEventRefactoring.cs index cafff6dff4..9efed9e746 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ExpandEventRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ExpandEventRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ExpandExpressionBodyRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ExpandExpressionBodyRefactoring.cs index 6562ea3cb7..84855811d5 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ExpandExpressionBodyRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ExpandExpressionBodyRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading.Tasks; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ExpandInitializerRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ExpandInitializerRefactoring.cs index 57b973297f..9791fe90da 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ExpandInitializerRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ExpandInitializerRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ExpandLambdaExpressionBodyRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ExpandLambdaExpressionBodyRefactoring.cs index 00d2bf3b0f..12f3f0f5d9 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ExpandLambdaExpressionBodyRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ExpandLambdaExpressionBodyRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Linq; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ExpandPropertyRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ExpandPropertyRefactoring.cs index 1fa44bc618..dbc0109133 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ExpandPropertyRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ExpandPropertyRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/ExtractEventHandlerMethodRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ExtractEventHandlerMethodRefactoring.cs index 26a902c9fe..c51cd28b44 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ExtractEventHandlerMethodRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ExtractEventHandlerMethodRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ExtractExpressionFromConditionRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ExtractExpressionFromConditionRefactoring.cs index 1993eebc23..6c89f150c8 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ExtractExpressionFromConditionRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ExtractExpressionFromConditionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ExtractGenericTypeRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ExtractGenericTypeRefactoring.cs index 280aee04c8..df4820f93b 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ExtractGenericTypeRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ExtractGenericTypeRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ExtractStatementRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ExtractStatementRefactoring.cs index 9dc0a6c415..793c83c5cd 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ExtractStatementRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ExtractStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/ExtractTypeDeclarationToNewFile/ExtractTypeDeclarationToNewFile.cs b/src/Tests.Old/Refactorings.Tests.Old/ExtractTypeDeclarationToNewFile/ExtractTypeDeclarationToNewFile.cs index 25e890b13b..4db471a7c9 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ExtractTypeDeclarationToNewFile/ExtractTypeDeclarationToNewFile.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ExtractTypeDeclarationToNewFile/ExtractTypeDeclarationToNewFile.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/FormatAttributeArgumentListRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/FormatAttributeArgumentListRefactoring.cs index 9319037ade..c40a59523a 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/FormatAttributeArgumentListRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/FormatAttributeArgumentListRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Refactorings.Tests.Old/FormatBinaryExpressionRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/FormatBinaryExpressionRefactoring.cs index c955cd1d59..2f494ff44c 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/FormatBinaryExpressionRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/FormatBinaryExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/FormatConditionalExpressionRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/FormatConditionalExpressionRefactoring.cs index 67e14fe3b7..a96fb6d029 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/FormatConditionalExpressionRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/FormatConditionalExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/FormatConstraintClauses.cs b/src/Tests.Old/Refactorings.Tests.Old/FormatConstraintClauses.cs index e8c5a907a0..3be9514161 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/FormatConstraintClauses.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/FormatConstraintClauses.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/FormatParameterListRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/FormatParameterListRefactoring.cs index 5bf827b1a9..c2f1bb936a 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/FormatParameterListRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/FormatParameterListRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/GenerateBaseConstructorsRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/GenerateBaseConstructorsRefactoring.cs index b883a9df79..0d939d8582 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/GenerateBaseConstructorsRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/GenerateBaseConstructorsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Refactorings.Tests.Old/GenerateOnEventMethodRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/GenerateOnEventMethodRefactoring.cs index 6053e9825c..a6865b5785 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/GenerateOnEventMethodRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/GenerateOnEventMethodRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.ComponentModel; diff --git a/src/Tests.Old/Refactorings.Tests.Old/GeneratePropertyForDebuggerDisplayAttributeRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/GeneratePropertyForDebuggerDisplayAttributeRefactoring.cs index 70eaadb358..4c1775abdc 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/GeneratePropertyForDebuggerDisplayAttributeRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/GeneratePropertyForDebuggerDisplayAttributeRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; diff --git a/src/Tests.Old/Refactorings.Tests.Old/GenerateSwitchSectionsRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/GenerateSwitchSectionsRefactoring.cs index e62c0f3c3b..ac86a33afb 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/GenerateSwitchSectionsRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/GenerateSwitchSectionsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Text.RegularExpressions; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ImplementIEquatableOfTRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ImplementIEquatableOfTRefactoring.cs index 4e59e84fa9..269265bc8d 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ImplementIEquatableOfTRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ImplementIEquatableOfTRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/Tests.Old/Refactorings.Tests.Old/InitializeLocalWithDefaultValueRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/InitializeLocalWithDefaultValueRefactoring.cs index 99d1a67a3e..0b71521829 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/InitializeLocalWithDefaultValueRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/InitializeLocalWithDefaultValueRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Text; diff --git a/src/Tests.Old/Refactorings.Tests.Old/InlineConstant/InlineConstant.cs b/src/Tests.Old/Refactorings.Tests.Old/InlineConstant/InlineConstant.cs index 6847017c40..afe0052389 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/InlineConstant/InlineConstant.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/InlineConstant/InlineConstant.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable RCS1127 diff --git a/src/Tests.Old/Refactorings.Tests.Old/InlineConstant/InlineConstant2.cs b/src/Tests.Old/Refactorings.Tests.Old/InlineConstant/InlineConstant2.cs index b29b7a8c38..959a694ccc 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/InlineConstant/InlineConstant2.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/InlineConstant/InlineConstant2.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable RCS1127 diff --git a/src/Tests.Old/Refactorings.Tests.Old/InlineMethodRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/InlineMethodRefactoring.cs index df52aa5436..c015bb5f7a 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/InlineMethodRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/InlineMethodRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Refactorings.Tests.Old/InlineMethodRefactoring_.cs b/src/Tests.Old/Refactorings.Tests.Old/InlineMethodRefactoring_.cs index fe5aba93f1..0156826299 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/InlineMethodRefactoring_.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/InlineMethodRefactoring_.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Linq; diff --git a/src/Tests.Old/Refactorings.Tests.Old/InlinePropertyRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/InlinePropertyRefactoring.cs index 53abd72d94..838202b3df 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/InlinePropertyRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/InlinePropertyRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable IDE0002, IDE0003 diff --git a/src/Tests.Old/Refactorings.Tests.Old/InsertInterpolationIntoInterpolatedStringRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/InsertInterpolationIntoInterpolatedStringRefactoring.cs index c30202a511..2c7d9c5c50 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/InsertInterpolationIntoInterpolatedStringRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/InsertInterpolationIntoInterpolatedStringRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/InsertInterpolationIntoStringLiteralRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/InsertInterpolationIntoStringLiteralRefactoring.cs index 4690e6fce7..73b21df45f 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/InsertInterpolationIntoStringLiteralRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/InsertInterpolationIntoStringLiteralRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; diff --git a/src/Tests.Old/Refactorings.Tests.Old/IntroduceConstructorRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/IntroduceConstructorRefactoring.cs index 90accfe181..216571da48 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/IntroduceConstructorRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/IntroduceConstructorRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/IntroduceFieldToLockOnRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/IntroduceFieldToLockOnRefactoring.cs index 34da24ac2e..a68aa54d8e 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/IntroduceFieldToLockOnRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/IntroduceFieldToLockOnRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Tests.Old/Refactorings.Tests.Old/IntroduceLocalVariableRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/IntroduceLocalVariableRefactoring.cs index 9531934cf7..19d4fdf183 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/IntroduceLocalVariableRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/IntroduceLocalVariableRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.IO; diff --git a/src/Tests.Old/Refactorings.Tests.Old/JoinStringExpressionsRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/JoinStringExpressionsRefactoring.cs index 9e116cb169..f0630d0e26 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/JoinStringExpressionsRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/JoinStringExpressionsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable RCS1127 diff --git a/src/Tests.Old/Refactorings.Tests.Old/MakeMemberAbstractRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/MakeMemberAbstractRefactoring.cs index 47e5b8b2b2..600fc7f2cc 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/MakeMemberAbstractRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/MakeMemberAbstractRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable RCS1170 diff --git a/src/Tests.Old/Refactorings.Tests.Old/MakeMemberVirtualRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/MakeMemberVirtualRefactoring.cs index e26f36b977..a97321cd88 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/MakeMemberVirtualRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/MakeMemberVirtualRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/MarkContainingClassAsAbstractRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/MarkContainingClassAsAbstractRefactoring.cs index 6f6fee768f..de82f6680a 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/MarkContainingClassAsAbstractRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/MarkContainingClassAsAbstractRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Refactorings.Tests.Old/MergeAssignmentExpressionWithReturnStatementRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/MergeAssignmentExpressionWithReturnStatementRefactoring.cs index 9243a52ffb..b1a6cd9f23 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/MergeAssignmentExpressionWithReturnStatementRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/MergeAssignmentExpressionWithReturnStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/MergeAttributesRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/MergeAttributesRefactoring.cs index 227191b583..b0fd8d01bb 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/MergeAttributesRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/MergeAttributesRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.ComponentModel.DataAnnotations; namespace Roslynator.CSharp.Refactorings.Tests diff --git a/src/Tests.Old/Refactorings.Tests.Old/MergeIfWithParentIf.cs b/src/Tests.Old/Refactorings.Tests.Old/MergeIfWithParentIf.cs index bfe4605694..ba9740965f 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/MergeIfWithParentIf.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/MergeIfWithParentIf.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable RCS1118 diff --git a/src/Tests.Old/Refactorings.Tests.Old/MergeInterpolationIntoInterpolatedStringRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/MergeInterpolationIntoInterpolatedStringRefactoring.cs index 303f4e9768..b7f5c757a8 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/MergeInterpolationIntoInterpolatedStringRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/MergeInterpolationIntoInterpolatedStringRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/MergeLocalDeclarationsRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/MergeLocalDeclarationsRefactoring.cs index 9ac3753ce6..f04a20576a 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/MergeLocalDeclarationsRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/MergeLocalDeclarationsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/MoveUnsafeContextToContainingDeclarationRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/MoveUnsafeContextToContainingDeclarationRefactoring.cs index e214e8667e..6898d9e7ad 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/MoveUnsafeContextToContainingDeclarationRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/MoveUnsafeContextToContainingDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable CS8321 diff --git a/src/Tests.Old/Refactorings.Tests.Old/NegateBinaryExpressionRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/NegateBinaryExpressionRefactoring.cs index 7857d34c67..d4b4766d6a 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/NegateBinaryExpressionRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/NegateBinaryExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/NegateBooleanLiteralRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/NegateBooleanLiteralRefactoring.cs index 3d30fe7525..8b4840b9fb 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/NegateBooleanLiteralRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/NegateBooleanLiteralRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/NegateOperatorRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/NegateOperatorRefactoring.cs index aa404a1b22..87d76bb391 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/NegateOperatorRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/NegateOperatorRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/ParenthesizeExpressionRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ParenthesizeExpressionRefactoring.cs index 9e62071e11..c0c43076fe 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ParenthesizeExpressionRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ParenthesizeExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/Properties/AssemblyInfo.cs b/src/Tests.Old/Refactorings.Tests.Old/Properties/AssemblyInfo.cs index e3ade0c1e3..c4f43aac27 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/Properties/AssemblyInfo.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Resources; using System.Reflection; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReduceIfNesting.cs b/src/Tests.Old/Refactorings.Tests.Old/ReduceIfNesting.cs index 50f2a368f3..316804a12d 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReduceIfNesting.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReduceIfNesting.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Refactorings.Tests.Old/RemoveAllCommentsExceptDocumentationCommentsRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RemoveAllCommentsExceptDocumentationCommentsRefactoring.cs index 5628946a28..2939e4d97c 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RemoveAllCommentsExceptDocumentationCommentsRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RemoveAllCommentsExceptDocumentationCommentsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/RemoveAllDocumentationCommentsRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RemoveAllDocumentationCommentsRefactoring.cs index 3eb6a1c0ab..dcaa52c6a3 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RemoveAllDocumentationCommentsRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RemoveAllDocumentationCommentsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/RemoveAllMemberDeclarationsRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RemoveAllMemberDeclarationsRefactoring.cs index 893ad306bd..833651fca7 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RemoveAllMemberDeclarationsRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RemoveAllMemberDeclarationsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/RemoveAllRegionDirectivesRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RemoveAllRegionDirectivesRefactoring.cs index 4a0590673f..bda06cbdac 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RemoveAllRegionDirectivesRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RemoveAllRegionDirectivesRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/RemoveAllStatementsRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RemoveAllStatementsRefactoring.cs index 14d9b86503..661cca1561 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RemoveAllStatementsRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RemoveAllStatementsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; diff --git a/src/Tests.Old/Refactorings.Tests.Old/RemoveAllSwitchSectionsRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RemoveAllSwitchSectionsRefactoring.cs index 5ad00a2476..029361c4f0 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RemoveAllSwitchSectionsRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RemoveAllSwitchSectionsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Text.RegularExpressions; diff --git a/src/Tests.Old/Refactorings.Tests.Old/RemoveBracesFromIfElseRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RemoveBracesFromIfElseRefactoring.cs index 796f346b59..af95a5ba1c 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RemoveBracesFromIfElseRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RemoveBracesFromIfElseRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/RemoveBracesFromSwitchSectionRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RemoveBracesFromSwitchSectionRefactoring.cs index 1802e26caf..73245b7dbb 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RemoveBracesFromSwitchSectionRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RemoveBracesFromSwitchSectionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.IO; namespace Roslynator.CSharp.Refactorings.Tests diff --git a/src/Tests.Old/Refactorings.Tests.Old/RemoveBracesFromSwitchSectionsRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RemoveBracesFromSwitchSectionsRefactoring.cs index 52a317dd42..b1ba4ef93b 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RemoveBracesFromSwitchSectionsRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RemoveBracesFromSwitchSectionsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.IO; diff --git a/src/Tests.Old/Refactorings.Tests.Old/RemoveBracesRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RemoveBracesRefactoring.cs index 32e6764ef4..84470784b5 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RemoveBracesRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RemoveBracesRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable RCS1171 diff --git a/src/Tests.Old/Refactorings.Tests.Old/RemoveCommentRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RemoveCommentRefactoring.cs index 9b2ecaee73..0fe0f257fb 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RemoveCommentRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RemoveCommentRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/RemoveConditionFromLastElseRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RemoveConditionFromLastElseRefactoring.cs index 9ba7454051..dd05cc9487 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RemoveConditionFromLastElseRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RemoveConditionFromLastElseRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/RemoveDirectiveAndRelatedDirectivesRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RemoveDirectiveAndRelatedDirectivesRefactoring.cs index 44cbfe2b76..24855c9963 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RemoveDirectiveAndRelatedDirectivesRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RemoveDirectiveAndRelatedDirectivesRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/RemoveEmptyLinesRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RemoveEmptyLinesRefactoring.cs index 2a6dd51f40..3d26585631 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RemoveEmptyLinesRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RemoveEmptyLinesRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Refactorings.Tests.Old/RemoveInterpolationRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RemoveInterpolationRefactoring.cs index c98662fced..500e94f345 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RemoveInterpolationRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RemoveInterpolationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/RemoveMemberDeclarationRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RemoveMemberDeclarationRefactoring.cs index 643d6fd7bf..0d68458489 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RemoveMemberDeclarationRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RemoveMemberDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/RemoveMemberDeclarationsRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RemoveMemberDeclarationsRefactoring.cs index e5e8e700cf..039d3e2efb 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RemoveMemberDeclarationsRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RemoveMemberDeclarationsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/RemoveParameterNameFromArgumentRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RemoveParameterNameFromArgumentRefactoring.cs index 6ccad79f72..f24272f717 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RemoveParameterNameFromArgumentRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RemoveParameterNameFromArgumentRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/RemoveParenthesesRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RemoveParenthesesRefactoring.cs index 6629d1d7f5..774b50f8a9 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RemoveParenthesesRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RemoveParenthesesRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/RemovePropertyInitializerRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RemovePropertyInitializerRefactoring.cs index 593027d195..8968110a48 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RemovePropertyInitializerRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RemovePropertyInitializerRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Refactorings.Tests.Old/RemoveRegionRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RemoveRegionRefactoring.cs index 5df65c3efb..012601772e 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RemoveRegionRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RemoveRegionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/RemoveStatementsFromSwitchSectionsRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RemoveStatementsFromSwitchSectionsRefactoring.cs index 3be3902c5c..d9ed01ca6d 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RemoveStatementsFromSwitchSectionsRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RemoveStatementsFromSwitchSectionsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Refactorings.Tests.Old/RemoveUnnecessaryElseClauseRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RemoveUnnecessaryElseClauseRefactoring.cs index 2c2bbb153d..3600bb8e69 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RemoveUnnecessaryElseClauseRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RemoveUnnecessaryElseClauseRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.IO; diff --git a/src/Tests.Old/Refactorings.Tests.Old/RemoveUsingAliasDirectiveRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RemoveUsingAliasDirectiveRefactoring.cs index e670e6cfcc..5da04e91e2 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RemoveUsingAliasDirectiveRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RemoveUsingAliasDirectiveRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using listOfString = System.Collections.Generic.List; diff --git a/src/Tests.Old/Refactorings.Tests.Old/RenameBackingFieldAccordingToPropertyNameRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RenameBackingFieldAccordingToPropertyNameRefactoring.cs index 133cd08344..a7cba5b7a4 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RenameBackingFieldAccordingToPropertyNameRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RenameBackingFieldAccordingToPropertyNameRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/RenameFieldIdentifierAccordingToTypeNameRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RenameFieldIdentifierAccordingToTypeNameRefactoring.cs index 74a2b5c1cd..25c1310f5c 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RenameFieldIdentifierAccordingToTypeNameRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RenameFieldIdentifierAccordingToTypeNameRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.ObjectModel; diff --git a/src/Tests.Old/Refactorings.Tests.Old/RenameForeachVariableAccordingToTypeNameRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RenameForeachVariableAccordingToTypeNameRefactoring.cs index f3cf154443..93cf56108c 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RenameForeachVariableAccordingToTypeNameRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RenameForeachVariableAccordingToTypeNameRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Tests.Old/Refactorings.Tests.Old/RenameIdentifierAccordingToTypeNameRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RenameIdentifierAccordingToTypeNameRefactoring.cs index b83d32921a..eeb33507e6 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RenameIdentifierAccordingToTypeNameRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RenameIdentifierAccordingToTypeNameRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Tests.Old/Refactorings.Tests.Old/RenameMethodAccordingToTypeNameRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RenameMethodAccordingToTypeNameRefactoring.cs index a81a8036b9..a21a3f0d1d 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RenameMethodAccordingToTypeNameRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RenameMethodAccordingToTypeNameRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.ObjectModel; diff --git a/src/Tests.Old/Refactorings.Tests.Old/RenameParameterAccordingToTypeNameRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RenameParameterAccordingToTypeNameRefactoring.cs index cdf2e565d9..32453e6575 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RenameParameterAccordingToTypeNameRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RenameParameterAccordingToTypeNameRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Refactorings.Tests.Old/RenamePropertyAccordingToTypeNameRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/RenamePropertyAccordingToTypeNameRefactoring.cs index dfe894a67c..f695377192 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/RenamePropertyAccordingToTypeNameRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/RenamePropertyAccordingToTypeNameRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Text; using System.Xml; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceAnonymousMethodWithLambdaExpressionRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceAnonymousMethodWithLambdaExpressionRefactoring.cs index dd39a9f2f4..c5c2ebcd1d 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceAnonymousMethodWithLambdaExpressionRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceAnonymousMethodWithLambdaExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceCommentWithDocumentationCommentRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceCommentWithDocumentationCommentRefactoring.cs index 68b3cb938e..662df240a3 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceCommentWithDocumentationCommentRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceCommentWithDocumentationCommentRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceConditionalExpressionWithExpressionRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceConditionalExpressionWithExpressionRefactoring.cs index c0e69e7e9f..8e08dc6d4b 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceConditionalExpressionWithExpressionRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceConditionalExpressionWithExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceConstantWithFieldRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceConstantWithFieldRefactoring.cs index b214d921a1..43d826067a 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceConstantWithFieldRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceConstantWithFieldRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceDoStatementWithWhileStatementRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceDoStatementWithWhileStatementRefactoring.cs index 6559190dab..e8b46ea97c 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceDoStatementWithWhileStatementRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceDoStatementWithWhileStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceEmptyStringLiteralWithStringEmptyRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceEmptyStringLiteralWithStringEmptyRefactoring.cs index 70e0d7d038..cccf4fc6b6 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceEmptyStringLiteralWithStringEmptyRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceEmptyStringLiteralWithStringEmptyRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceEqualsExpressionWithStringEqualsRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceEqualsExpressionWithStringEqualsRefactoring.cs index 89f7c4c829..a4a5c12502 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceEqualsExpressionWithStringEqualsRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceEqualsExpressionWithStringEqualsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceEqualsExpressionWithStringMethodRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceEqualsExpressionWithStringMethodRefactoring.cs index c5e2446a9c..76b8cac909 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceEqualsExpressionWithStringMethodRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceEqualsExpressionWithStringMethodRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceFieldWithConstantRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceFieldWithConstantRefactoring.cs index c8aa75a9f5..e6bd78367a 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceFieldWithConstantRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceFieldWithConstantRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceForWithForeachRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceForWithForeachRefactoring.cs index f48ba9ae1f..6e51181423 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceForWithForeachRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceForWithForeachRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceForeachWithForRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceForeachWithForRefactoring.cs index 666540e847..5f05ba1593 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceForeachWithForRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceForeachWithForRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceHasFlagWithBitwiseOperationRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceHasFlagWithBitwiseOperationRefactoring.cs index b0a151470b..f712d96aee 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceHasFlagWithBitwiseOperationRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceHasFlagWithBitwiseOperationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Text.RegularExpressions; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceHexadecimalLiteralWithDecimalLiteralRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceHexadecimalLiteralWithDecimalLiteralRefactoring.cs index c539760956..abd1ae3aee 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceHexadecimalLiteralWithDecimalLiteralRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceHexadecimalLiteralWithDecimalLiteralRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceIfWithSwitchRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceIfWithSwitchRefactoring.cs index f23af1cec3..747f0b3bac 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceIfWithSwitchRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceIfWithSwitchRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.IO; using System.Text; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceIncrementOperatorWithDecrementOperatorRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceIncrementOperatorWithDecrementOperatorRefactoring.cs index 68a4d3ea7f..d6b0af7a2d 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceIncrementOperatorWithDecrementOperatorRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceIncrementOperatorWithDecrementOperatorRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceInterpolatedStringWithConcatenationRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceInterpolatedStringWithConcatenationRefactoring.cs index 1fbf5af164..e548fbf2f9 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceInterpolatedStringWithConcatenationRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceInterpolatedStringWithConcatenationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceInterpolatedStringWithInterpolationExpressionRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceInterpolatedStringWithInterpolationExpressionRefactoring.cs index c7482632fe..2eb8ecb926 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceInterpolatedStringWithInterpolationExpressionRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceInterpolatedStringWithInterpolationExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceInterpolatedStringWithStringFormatRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceInterpolatedStringWithStringFormatRefactoring.cs index 3032534332..8e4f76700c 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceInterpolatedStringWithStringFormatRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceInterpolatedStringWithStringFormatRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceInterpolatedStringWithStringLiteralRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceInterpolatedStringWithStringLiteralRefactoring.cs index 266f7a886b..5eb1ebbb7c 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceInterpolatedStringWithStringLiteralRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceInterpolatedStringWithStringLiteralRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceMethodGroupWithLambdaRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceMethodGroupWithLambdaRefactoring.cs index b249e4f82c..31d195e014 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceMethodGroupWithLambdaRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceMethodGroupWithLambdaRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceMethodWithProperty/ReplaceMethodWithPropertyRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceMethodWithProperty/ReplaceMethodWithPropertyRefactoring.cs index 14b1305166..d3fe9dc184 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceMethodWithProperty/ReplaceMethodWithPropertyRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceMethodWithProperty/ReplaceMethodWithPropertyRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceMethodWithProperty/ReplaceMethodWithPropertyRefactoring2.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceMethodWithProperty/ReplaceMethodWithPropertyRefactoring2.cs index 5340fa182c..6a64f39a00 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceMethodWithProperty/ReplaceMethodWithPropertyRefactoring2.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceMethodWithProperty/ReplaceMethodWithPropertyRefactoring2.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceObjectCreationWithDefaultValue.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceObjectCreationWithDefaultValue.cs index fe20b95786..138cba743e 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceObjectCreationWithDefaultValue.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceObjectCreationWithDefaultValue.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplacePrefixOperatorWithPostfixOperatorRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplacePrefixOperatorWithPostfixOperatorRefactoring.cs index 840008b969..f970d9aa8f 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplacePrefixOperatorWithPostfixOperatorRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplacePrefixOperatorWithPostfixOperatorRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplacePropertyWithMethod/ReplacePropertyWithMethodRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplacePropertyWithMethod/ReplacePropertyWithMethodRefactoring.cs index fa33ef5edc..127d2c9745 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplacePropertyWithMethod/ReplacePropertyWithMethodRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplacePropertyWithMethod/ReplacePropertyWithMethodRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplacePropertyWithMethod/ReplacePropertyWithMethodRefactoring2.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplacePropertyWithMethod/ReplacePropertyWithMethodRefactoring2.cs index 58282ad19f..2267c58788 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplacePropertyWithMethod/ReplacePropertyWithMethodRefactoring2.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplacePropertyWithMethod/ReplacePropertyWithMethodRefactoring2.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceRegularStringLiteralWithVerbatimStringLiteralRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceRegularStringLiteralWithVerbatimStringLiteralRefactoring.cs index 6686ca08ee..cf7a6c0313 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceRegularStringLiteralWithVerbatimStringLiteralRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceRegularStringLiteralWithVerbatimStringLiteralRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceStringContainsWithStringIndexOfRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceStringContainsWithStringIndexOfRefactoring.cs index 95a2667736..9a653c634b 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceStringContainsWithStringIndexOfRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceStringContainsWithStringIndexOfRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceStringEmptyWithEmptyStringLiteralRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceStringEmptyWithEmptyStringLiteralRefactoring.cs index bea9ed4020..a824aedda2 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceStringEmptyWithEmptyStringLiteralRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceStringEmptyWithEmptyStringLiteralRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceStringFormatWithInterpolatedStringRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceStringFormatWithInterpolatedStringRefactoring.cs index ffa8d1f1f1..33f72aad15 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceStringFormatWithInterpolatedStringRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceStringFormatWithInterpolatedStringRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceSwitchWithIfElseRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceSwitchWithIfElseRefactoring.cs index a661ec6e20..f4237c042a 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceSwitchWithIfElseRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceSwitchWithIfElseRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReplaceVerbatimStringLiteralWithRegularStringLiteralRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReplaceVerbatimStringLiteralWithRegularStringLiteralRefactoring.cs index 50d2d7f057..a1731a3574 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReplaceVerbatimStringLiteralWithRegularStringLiteralRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReplaceVerbatimStringLiteralWithRegularStringLiteralRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/ReverseForLoopRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/ReverseForLoopRefactoring.cs index 7649206553..08ea667864 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/ReverseForLoopRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/ReverseForLoopRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; diff --git a/src/Tests.Old/Refactorings.Tests.Old/SimplifyLambdaExpressionRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/SimplifyLambdaExpressionRefactoring.cs index f83289762b..6c2bb60302 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/SimplifyLambdaExpressionRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/SimplifyLambdaExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Tests.Old/Refactorings.Tests.Old/SortEnumMemberDeclarationsRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/SortEnumMemberDeclarationsRefactoring.cs index 4e2298d5c5..905ddebd54 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/SortEnumMemberDeclarationsRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/SortEnumMemberDeclarationsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/SortMemberDeclarationsRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/SortMemberDeclarationsRefactoring.cs index d211510b57..5c1c9a99ce 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/SortMemberDeclarationsRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/SortMemberDeclarationsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Refactorings.Tests.Old/SplitAttributesRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/SplitAttributesRefactoring.cs index 6456b5932a..bca71ce111 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/SplitAttributesRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/SplitAttributesRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.ComponentModel.DataAnnotations; diff --git a/src/Tests.Old/Refactorings.Tests.Old/SplitDeclarationAndInitializationRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/SplitDeclarationAndInitializationRefactoring.cs index 1bcde11b37..8b237450e5 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/SplitDeclarationAndInitializationRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/SplitDeclarationAndInitializationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Refactorings.Tests.Old/SplitIfElseRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/SplitIfElseRefactoring.cs index 717f49ab87..edb08d2d10 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/SplitIfElseRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/SplitIfElseRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #pragma warning disable RCS1118 diff --git a/src/Tests.Old/Refactorings.Tests.Old/SplitLocalDeclarationRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/SplitLocalDeclarationRefactoring.cs index 7d5b115086..c0f223253b 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/SplitLocalDeclarationRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/SplitLocalDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tests.Old/Refactorings.Tests.Old/SplitSwitchLabelsRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/SplitSwitchLabelsRefactoring.cs index 78fc83e115..24566547b6 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/SplitSwitchLabelsRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/SplitSwitchLabelsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Text.RegularExpressions; diff --git a/src/Tests.Old/Refactorings.Tests.Old/SwapExpressionsInConditionalExpressionRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/SwapExpressionsInConditionalExpressionRefactoring.cs index c1481533be..02d9d4a59c 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/SwapExpressionsInConditionalExpressionRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/SwapExpressionsInConditionalExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/SwapMemberDeclarationsRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/SwapMemberDeclarationsRefactoring.cs index 6b02d46b28..e7c09cb266 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/SwapMemberDeclarationsRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/SwapMemberDeclarationsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/SwapStatementsInIfElseRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/SwapStatementsInIfElseRefactoring.cs index 138528d4f8..afc8d2a248 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/SwapStatementsInIfElseRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/SwapStatementsInIfElseRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/Tuple.cs b/src/Tests.Old/Refactorings.Tests.Old/Tuple.cs index aaecd5d69a..cb6df6c1fe 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/Tuple.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/Tuple.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; diff --git a/src/Tests.Old/Refactorings.Tests.Old/UncommentRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/UncommentRefactoring.cs index df3c49ee1d..a13cdaecbf 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/UncommentRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/UncommentRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/UseCSharp6DictionaryInitializerRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/UseCSharp6DictionaryInitializerRefactoring.cs index 0e1f0f81ed..8746d894dc 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/UseCSharp6DictionaryInitializerRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/UseCSharp6DictionaryInitializerRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections; using System.Collections.Generic; diff --git a/src/Tests.Old/Refactorings.Tests.Old/UseElementAccessInsteadOfEnumerableMethodRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/UseElementAccessInsteadOfEnumerableMethodRefactoring.cs index bd478dbd31..592ad77837 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/UseElementAccessInsteadOfEnumerableMethodRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/UseElementAccessInsteadOfEnumerableMethodRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Tests.Old/Refactorings.Tests.Old/UseInsteadOfIfRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/UseInsteadOfIfRefactoring.cs index 467de28b74..51339b4fc5 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/UseInsteadOfIfRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/UseInsteadOfIfRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; diff --git a/src/Tests.Old/Refactorings.Tests.Old/UseListInsteadOfYield.cs b/src/Tests.Old/Refactorings.Tests.Old/UseListInsteadOfYield.cs index 671b1fae3f..fb432c0f0a 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/UseListInsteadOfYield.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/UseListInsteadOfYield.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests.Old/Refactorings.Tests.Old/UseStringBuilderInsteadOfConcatenation.cs b/src/Tests.Old/Refactorings.Tests.Old/UseStringBuilderInsteadOfConcatenation.cs index 2bbb562aa9..c3338c67c7 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/UseStringBuilderInsteadOfConcatenation.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/UseStringBuilderInsteadOfConcatenation.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Text; diff --git a/src/Tests.Old/Refactorings.Tests.Old/WrapInConditionRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/WrapInConditionRefactoring.cs index a6cdf746da..ee8e9cfed0 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/WrapInConditionRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/WrapInConditionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/WrapInIfDirectiveRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/WrapInIfDirectiveRefactoring.cs index b96d20dd90..0316274efd 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/WrapInIfDirectiveRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/WrapInIfDirectiveRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/WrapInRegionRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/WrapInRegionRefactoring.cs index e71167e7cd..eca2fdf013 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/WrapInRegionRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/WrapInRegionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/WrapInTryCatchRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/WrapInTryCatchRefactoring.cs index 27d3a2a232..6d155b3bd3 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/WrapInTryCatchRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/WrapInTryCatchRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CSharp.Refactorings.Tests { diff --git a/src/Tests.Old/Refactorings.Tests.Old/WrapInUsingStatementRefactoring.cs b/src/Tests.Old/Refactorings.Tests.Old/WrapInUsingStatementRefactoring.cs index b215002613..3238cf93fe 100644 --- a/src/Tests.Old/Refactorings.Tests.Old/WrapInUsingStatementRefactoring.cs +++ b/src/Tests.Old/Refactorings.Tests.Old/WrapInUsingStatementRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.IO; diff --git a/src/Tests/Analyzers.Tests/RCS1004RemoveBracesFromIfElseTests.cs b/src/Tests/Analyzers.Tests/RCS1004RemoveBracesFromIfElseTests.cs index 18607afcc7..3f1d5790ea 100644 --- a/src/Tests/Analyzers.Tests/RCS1004RemoveBracesFromIfElseTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1004RemoveBracesFromIfElseTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1005SimplifyNestedUsingStatementTests.cs b/src/Tests/Analyzers.Tests/RCS1005SimplifyNestedUsingStatementTests.cs index c3090d78db..0caf8b8049 100644 --- a/src/Tests/Analyzers.Tests/RCS1005SimplifyNestedUsingStatementTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1005SimplifyNestedUsingStatementTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1007AddBracesTests.cs b/src/Tests/Analyzers.Tests/RCS1007AddBracesTests.cs index f050c122b7..889e9ddac7 100644 --- a/src/Tests/Analyzers.Tests/RCS1007AddBracesTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1007AddBracesTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1008UseExplicitTypeInsteadOfVarWhenTypeIsNotObviousTests.cs b/src/Tests/Analyzers.Tests/RCS1008UseExplicitTypeInsteadOfVarWhenTypeIsNotObviousTests.cs index 1a4f666712..cc7cabae6e 100644 --- a/src/Tests/Analyzers.Tests/RCS1008UseExplicitTypeInsteadOfVarWhenTypeIsNotObviousTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1008UseExplicitTypeInsteadOfVarWhenTypeIsNotObviousTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1009UseExplicitTypeInsteadOfVarInForEachTests.cs b/src/Tests/Analyzers.Tests/RCS1009UseExplicitTypeInsteadOfVarInForEachTests.cs index 5577a95142..c08719e58f 100644 --- a/src/Tests/Analyzers.Tests/RCS1009UseExplicitTypeInsteadOfVarInForEachTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1009UseExplicitTypeInsteadOfVarInForEachTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1010UseVarInsteadOfExplicitTypeWhenTypeIsObviousTests.cs b/src/Tests/Analyzers.Tests/RCS1010UseVarInsteadOfExplicitTypeWhenTypeIsObviousTests.cs index 0102d8a325..bb4993bd16 100644 --- a/src/Tests/Analyzers.Tests/RCS1010UseVarInsteadOfExplicitTypeWhenTypeIsObviousTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1010UseVarInsteadOfExplicitTypeWhenTypeIsObviousTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1012UseExplicitTypeInsteadOfVarWhenTypeIsObviousTests.cs b/src/Tests/Analyzers.Tests/RCS1012UseExplicitTypeInsteadOfVarWhenTypeIsObviousTests.cs index 9ad674a9ec..51d188d5ed 100644 --- a/src/Tests/Analyzers.Tests/RCS1012UseExplicitTypeInsteadOfVarWhenTypeIsObviousTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1012UseExplicitTypeInsteadOfVarWhenTypeIsObviousTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1013UsePredefinedTypeTests.cs b/src/Tests/Analyzers.Tests/RCS1013UsePredefinedTypeTests.cs index 7bd7377ad6..ed1291f279 100644 --- a/src/Tests/Analyzers.Tests/RCS1013UsePredefinedTypeTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1013UsePredefinedTypeTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1014UseExplicitlyTypedArrayOrViceVersaTests.cs b/src/Tests/Analyzers.Tests/RCS1014UseExplicitlyTypedArrayOrViceVersaTests.cs index 6d1afc9c74..37711b3203 100644 --- a/src/Tests/Analyzers.Tests/RCS1014UseExplicitlyTypedArrayOrViceVersaTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1014UseExplicitlyTypedArrayOrViceVersaTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1014UseImplicitlyTypedArrayTests.cs b/src/Tests/Analyzers.Tests/RCS1014UseImplicitlyTypedArrayTests.cs index 522b558e8f..5379cbc4f2 100644 --- a/src/Tests/Analyzers.Tests/RCS1014UseImplicitlyTypedArrayTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1014UseImplicitlyTypedArrayTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1015UseNameOfOperatorTests.cs b/src/Tests/Analyzers.Tests/RCS1015UseNameOfOperatorTests.cs index 7979d94976..00e521b617 100644 --- a/src/Tests/Analyzers.Tests/RCS1015UseNameOfOperatorTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1015UseNameOfOperatorTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1016UseBlockBodyTests.cs b/src/Tests/Analyzers.Tests/RCS1016UseBlockBodyTests.cs index 64f5599bff..66530288dd 100644 --- a/src/Tests/Analyzers.Tests/RCS1016UseBlockBodyTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1016UseBlockBodyTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1016UseBlockBodyWhenExpressionIsMultiLineTests.cs b/src/Tests/Analyzers.Tests/RCS1016UseBlockBodyWhenExpressionIsMultiLineTests.cs index e63b4b87b3..7406898b77 100644 --- a/src/Tests/Analyzers.Tests/RCS1016UseBlockBodyWhenExpressionIsMultiLineTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1016UseBlockBodyWhenExpressionIsMultiLineTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1016UseExpressionBodyTests.cs b/src/Tests/Analyzers.Tests/RCS1016UseExpressionBodyTests.cs index 87d0e4f36c..1ed396bb90 100644 --- a/src/Tests/Analyzers.Tests/RCS1016UseExpressionBodyTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1016UseExpressionBodyTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1018AddAccessibilityModifiersTests.cs b/src/Tests/Analyzers.Tests/RCS1018AddAccessibilityModifiersTests.cs index 1877adf475..e3d97c3460 100644 --- a/src/Tests/Analyzers.Tests/RCS1018AddAccessibilityModifiersTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1018AddAccessibilityModifiersTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1018RemoveAccessibilityModifiersTests.cs b/src/Tests/Analyzers.Tests/RCS1018RemoveAccessibilityModifiersTests.cs index c6c6cbedc1..7a72f3c99c 100644 --- a/src/Tests/Analyzers.Tests/RCS1018RemoveAccessibilityModifiersTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1018RemoveAccessibilityModifiersTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1020SimplifyNullableOfTTests.cs b/src/Tests/Analyzers.Tests/RCS1020SimplifyNullableOfTTests.cs index 54acde6b10..5258f288d7 100644 --- a/src/Tests/Analyzers.Tests/RCS1020SimplifyNullableOfTTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1020SimplifyNullableOfTTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1021ConvertLambdaExpressionBodyToExpressionBodyTests.cs b/src/Tests/Analyzers.Tests/RCS1021ConvertLambdaExpressionBodyToExpressionBodyTests.cs index c6b7fc93d4..8646ab7d87 100644 --- a/src/Tests/Analyzers.Tests/RCS1021ConvertLambdaExpressionBodyToExpressionBodyTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1021ConvertLambdaExpressionBodyToExpressionBodyTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1031RemoveUnnecessaryBracesInSwitchSectionTests.cs b/src/Tests/Analyzers.Tests/RCS1031RemoveUnnecessaryBracesInSwitchSectionTests.cs index 285a796582..ee853ce1af 100644 --- a/src/Tests/Analyzers.Tests/RCS1031RemoveUnnecessaryBracesInSwitchSectionTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1031RemoveUnnecessaryBracesInSwitchSectionTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1032RemoveRedundantParenthesesTests.cs b/src/Tests/Analyzers.Tests/RCS1032RemoveRedundantParenthesesTests.cs index 701694a16f..4235586f21 100644 --- a/src/Tests/Analyzers.Tests/RCS1032RemoveRedundantParenthesesTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1032RemoveRedundantParenthesesTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1036RemoveUnnecessaryBlankLineTests.cs b/src/Tests/Analyzers.Tests/RCS1036RemoveUnnecessaryBlankLineTests.cs index 596cf9ce5e..11eaf1349e 100644 --- a/src/Tests/Analyzers.Tests/RCS1036RemoveUnnecessaryBlankLineTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1036RemoveUnnecessaryBlankLineTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1037RemoveTrailingWhitespaceTests.cs b/src/Tests/Analyzers.Tests/RCS1037RemoveTrailingWhitespaceTests.cs index 9c1e78b3da..8261ec5047 100644 --- a/src/Tests/Analyzers.Tests/RCS1037RemoveTrailingWhitespaceTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1037RemoveTrailingWhitespaceTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1040RemoveEmptyElseClauseTests.cs b/src/Tests/Analyzers.Tests/RCS1040RemoveEmptyElseClauseTests.cs index eb726756c8..cb1c5e0642 100644 --- a/src/Tests/Analyzers.Tests/RCS1040RemoveEmptyElseClauseTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1040RemoveEmptyElseClauseTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1041RemoveEmptyInitializerTests.cs b/src/Tests/Analyzers.Tests/RCS1041RemoveEmptyInitializerTests.cs index 2a5749602a..ff4f1882ea 100644 --- a/src/Tests/Analyzers.Tests/RCS1041RemoveEmptyInitializerTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1041RemoveEmptyInitializerTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1043RemovePartialModifierFromTypeWithSinglePartTests.cs b/src/Tests/Analyzers.Tests/RCS1043RemovePartialModifierFromTypeWithSinglePartTests.cs index 30fc8fd209..4a5fcf26c5 100644 --- a/src/Tests/Analyzers.Tests/RCS1043RemovePartialModifierFromTypeWithSinglePartTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1043RemovePartialModifierFromTypeWithSinglePartTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1044RemoveOriginalExceptionFromThrowStatementTests.cs b/src/Tests/Analyzers.Tests/RCS1044RemoveOriginalExceptionFromThrowStatementTests.cs index 0a2b82a31d..d4cf922544 100644 --- a/src/Tests/Analyzers.Tests/RCS1044RemoveOriginalExceptionFromThrowStatementTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1044RemoveOriginalExceptionFromThrowStatementTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1046AsynchronousMethodNameShouldEndWithAsyncTests.cs b/src/Tests/Analyzers.Tests/RCS1046AsynchronousMethodNameShouldEndWithAsyncTests.cs index ca3c533cb3..2ceed01fbb 100644 --- a/src/Tests/Analyzers.Tests/RCS1046AsynchronousMethodNameShouldEndWithAsyncTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1046AsynchronousMethodNameShouldEndWithAsyncTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1047NonAsynchronousMethodNameShouldNotEndWithAsyncTests.cs b/src/Tests/Analyzers.Tests/RCS1047NonAsynchronousMethodNameShouldNotEndWithAsyncTests.cs index 3b6629f812..f6125b57fd 100644 --- a/src/Tests/Analyzers.Tests/RCS1047NonAsynchronousMethodNameShouldNotEndWithAsyncTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1047NonAsynchronousMethodNameShouldNotEndWithAsyncTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1049SimplifyBooleanComparisonTests.cs b/src/Tests/Analyzers.Tests/RCS1049SimplifyBooleanComparisonTests.cs index 3d37d3791a..6f662f75c4 100644 --- a/src/Tests/Analyzers.Tests/RCS1049SimplifyBooleanComparisonTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1049SimplifyBooleanComparisonTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1050AddOrRemoveParenthesesWhenCreatingNewObjectTests.cs b/src/Tests/Analyzers.Tests/RCS1050AddOrRemoveParenthesesWhenCreatingNewObjectTests.cs index bf6fd49bd8..9d688a3294 100644 --- a/src/Tests/Analyzers.Tests/RCS1050AddOrRemoveParenthesesWhenCreatingNewObjectTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1050AddOrRemoveParenthesesWhenCreatingNewObjectTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1051AddOrRemoveParenthesesFromConditionOfConditionalExpressionTests.cs b/src/Tests/Analyzers.Tests/RCS1051AddOrRemoveParenthesesFromConditionOfConditionalExpressionTests.cs index 3e9bff6902..55cfe76059 100644 --- a/src/Tests/Analyzers.Tests/RCS1051AddOrRemoveParenthesesFromConditionOfConditionalExpressionTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1051AddOrRemoveParenthesesFromConditionOfConditionalExpressionTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1056AvoidUsageOfUsingAliasDirectiveTests.cs b/src/Tests/Analyzers.Tests/RCS1056AvoidUsageOfUsingAliasDirectiveTests.cs index 7683cf19ab..4035da41c1 100644 --- a/src/Tests/Analyzers.Tests/RCS1056AvoidUsageOfUsingAliasDirectiveTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1056AvoidUsageOfUsingAliasDirectiveTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1058UseCompoundAssignmentTests.cs b/src/Tests/Analyzers.Tests/RCS1058UseCompoundAssignmentTests.cs index 06e64c1323..4d2230ce90 100644 --- a/src/Tests/Analyzers.Tests/RCS1058UseCompoundAssignmentTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1058UseCompoundAssignmentTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1061MergeIfWithNestedIfTests.cs b/src/Tests/Analyzers.Tests/RCS1061MergeIfWithNestedIfTests.cs index 4458d43a87..397b4bd333 100644 --- a/src/Tests/Analyzers.Tests/RCS1061MergeIfWithNestedIfTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1061MergeIfWithNestedIfTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1066RemoveEmptyFinallyClauseTests.cs b/src/Tests/Analyzers.Tests/RCS1066RemoveEmptyFinallyClauseTests.cs index de2dc67a48..e413d12440 100644 --- a/src/Tests/Analyzers.Tests/RCS1066RemoveEmptyFinallyClauseTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1066RemoveEmptyFinallyClauseTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1068SimplifyLogicalNegationTests.cs b/src/Tests/Analyzers.Tests/RCS1068SimplifyLogicalNegationTests.cs index 3daac80e6c..81b69823f7 100644 --- a/src/Tests/Analyzers.Tests/RCS1068SimplifyLogicalNegationTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1068SimplifyLogicalNegationTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1068SimplifyLogicalNegationTests2.cs b/src/Tests/Analyzers.Tests/RCS1068SimplifyLogicalNegationTests2.cs index 21b0f43fb2..38a1cff7dd 100644 --- a/src/Tests/Analyzers.Tests/RCS1068SimplifyLogicalNegationTests2.cs +++ b/src/Tests/Analyzers.Tests/RCS1068SimplifyLogicalNegationTests2.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1073ConvertIfToReturnStatementTests.cs b/src/Tests/Analyzers.Tests/RCS1073ConvertIfToReturnStatementTests.cs index e3642e7a73..d5b6c8e544 100644 --- a/src/Tests/Analyzers.Tests/RCS1073ConvertIfToReturnStatementTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1073ConvertIfToReturnStatementTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1074RemoveRedundantConstructorTests.cs b/src/Tests/Analyzers.Tests/RCS1074RemoveRedundantConstructorTests.cs index 759bb5d58b..d1cbc75411 100644 --- a/src/Tests/Analyzers.Tests/RCS1074RemoveRedundantConstructorTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1074RemoveRedundantConstructorTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1077OptimizeLinqMethodCallTests.cs b/src/Tests/Analyzers.Tests/RCS1077OptimizeLinqMethodCallTests.cs index 33bac3c544..7404f66417 100644 --- a/src/Tests/Analyzers.Tests/RCS1077OptimizeLinqMethodCallTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1077OptimizeLinqMethodCallTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1078UseEmptyStringLiteralOrStringEmptyTests.cs b/src/Tests/Analyzers.Tests/RCS1078UseEmptyStringLiteralOrStringEmptyTests.cs index 033bfbd42e..fbe5911262 100644 --- a/src/Tests/Analyzers.Tests/RCS1078UseEmptyStringLiteralOrStringEmptyTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1078UseEmptyStringLiteralOrStringEmptyTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1080UseCountOrLengthPropertyInsteadOfAnyMethodTests.cs b/src/Tests/Analyzers.Tests/RCS1080UseCountOrLengthPropertyInsteadOfAnyMethodTests.cs index 362047982d..cd96cb7e69 100644 --- a/src/Tests/Analyzers.Tests/RCS1080UseCountOrLengthPropertyInsteadOfAnyMethodTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1080UseCountOrLengthPropertyInsteadOfAnyMethodTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1081SplitVariableDeclarationTests.cs b/src/Tests/Analyzers.Tests/RCS1081SplitVariableDeclarationTests.cs index fa518a4c3d..fc52a0bb1c 100644 --- a/src/Tests/Analyzers.Tests/RCS1081SplitVariableDeclarationTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1081SplitVariableDeclarationTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1084UseCoalesceExpressionInsteadOfConditionalExpressionTests.cs b/src/Tests/Analyzers.Tests/RCS1084UseCoalesceExpressionInsteadOfConditionalExpressionTests.cs index 95fbb1b850..3aedd0266f 100644 --- a/src/Tests/Analyzers.Tests/RCS1084UseCoalesceExpressionInsteadOfConditionalExpressionTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1084UseCoalesceExpressionInsteadOfConditionalExpressionTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1085UseAutoPropertyTests.cs b/src/Tests/Analyzers.Tests/RCS1085UseAutoPropertyTests.cs index d83f8a4663..9205eea324 100644 --- a/src/Tests/Analyzers.Tests/RCS1085UseAutoPropertyTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1085UseAutoPropertyTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1089UseUnaryOperatorInsteadOfAssignmentTests.cs b/src/Tests/Analyzers.Tests/RCS1089UseUnaryOperatorInsteadOfAssignmentTests.cs index f26dca467e..8dd674e85b 100644 --- a/src/Tests/Analyzers.Tests/RCS1089UseUnaryOperatorInsteadOfAssignmentTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1089UseUnaryOperatorInsteadOfAssignmentTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1090AddCallToConfigureAwaitTests.cs b/src/Tests/Analyzers.Tests/RCS1090AddCallToConfigureAwaitTests.cs index 0efde8c590..a8835fb2b2 100644 --- a/src/Tests/Analyzers.Tests/RCS1090AddCallToConfigureAwaitTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1090AddCallToConfigureAwaitTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1090RemoveCallToConfigureAwaitTests.cs b/src/Tests/Analyzers.Tests/RCS1090RemoveCallToConfigureAwaitTests.cs index c0e664d4a5..f238609013 100644 --- a/src/Tests/Analyzers.Tests/RCS1090RemoveCallToConfigureAwaitTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1090RemoveCallToConfigureAwaitTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1096ConvertHasFlagCallToBitwiseOperationTests.cs b/src/Tests/Analyzers.Tests/RCS1096ConvertHasFlagCallToBitwiseOperationTests.cs index 90b7a903d2..32dd371076 100644 --- a/src/Tests/Analyzers.Tests/RCS1096ConvertHasFlagCallToBitwiseOperationTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1096ConvertHasFlagCallToBitwiseOperationTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1096UseHasFlagMethodOrBitwiseOperatorTests.cs b/src/Tests/Analyzers.Tests/RCS1096UseHasFlagMethodOrBitwiseOperatorTests.cs index d32ccf2ab7..8c8c75cc07 100644 --- a/src/Tests/Analyzers.Tests/RCS1096UseHasFlagMethodOrBitwiseOperatorTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1096UseHasFlagMethodOrBitwiseOperatorTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1097RemoveRedundantToStringCallTests.cs b/src/Tests/Analyzers.Tests/RCS1097RemoveRedundantToStringCallTests.cs index 66e590a928..278c6f8732 100644 --- a/src/Tests/Analyzers.Tests/RCS1097RemoveRedundantToStringCallTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1097RemoveRedundantToStringCallTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1098ConstantValuesShouldBePlacedOnRightSideOfComparisonsTests.cs b/src/Tests/Analyzers.Tests/RCS1098ConstantValuesShouldBePlacedOnRightSideOfComparisonsTests.cs index e97b05785f..83e3288e76 100644 --- a/src/Tests/Analyzers.Tests/RCS1098ConstantValuesShouldBePlacedOnRightSideOfComparisonsTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1098ConstantValuesShouldBePlacedOnRightSideOfComparisonsTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1101FormatDocumentationSummaryOnMultipleLinesTests.cs b/src/Tests/Analyzers.Tests/RCS1101FormatDocumentationSummaryOnMultipleLinesTests.cs index 23354b1346..85bef69b5a 100644 --- a/src/Tests/Analyzers.Tests/RCS1101FormatDocumentationSummaryOnMultipleLinesTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1101FormatDocumentationSummaryOnMultipleLinesTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1102MakeClassStaticTests.cs b/src/Tests/Analyzers.Tests/RCS1102MakeClassStaticTests.cs index 113310d109..0ccb8b529b 100644 --- a/src/Tests/Analyzers.Tests/RCS1102MakeClassStaticTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1102MakeClassStaticTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1103ConvertIfToAssignmentTests.cs b/src/Tests/Analyzers.Tests/RCS1103ConvertIfToAssignmentTests.cs index 5aad6a6688..af5db7b7a5 100644 --- a/src/Tests/Analyzers.Tests/RCS1103ConvertIfToAssignmentTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1103ConvertIfToAssignmentTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1104SimplifyConditionalExpressionTests.cs b/src/Tests/Analyzers.Tests/RCS1104SimplifyConditionalExpressionTests.cs index 016c0e182c..4037eeafe6 100644 --- a/src/Tests/Analyzers.Tests/RCS1104SimplifyConditionalExpressionTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1104SimplifyConditionalExpressionTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1107RemoveRedundantStringToCharArrayCallTests.cs b/src/Tests/Analyzers.Tests/RCS1107RemoveRedundantStringToCharArrayCallTests.cs index 7f8871d1b5..b2fa3b4373 100644 --- a/src/Tests/Analyzers.Tests/RCS1107RemoveRedundantStringToCharArrayCallTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1107RemoveRedundantStringToCharArrayCallTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1110DeclareTypeInsideNamespaceTests.cs b/src/Tests/Analyzers.Tests/RCS1110DeclareTypeInsideNamespaceTests.cs index b52f0473fd..2d7ae6117f 100644 --- a/src/Tests/Analyzers.Tests/RCS1110DeclareTypeInsideNamespaceTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1110DeclareTypeInsideNamespaceTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1113UseStringIsNullOrEmptyMethodTests.cs b/src/Tests/Analyzers.Tests/RCS1113UseStringIsNullOrEmptyMethodTests.cs index 9a707de6cf..454c4a0da8 100644 --- a/src/Tests/Analyzers.Tests/RCS1113UseStringIsNullOrEmptyMethodTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1113UseStringIsNullOrEmptyMethodTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1114RemoveRedundantDelegateCreationTests.cs b/src/Tests/Analyzers.Tests/RCS1114RemoveRedundantDelegateCreationTests.cs index 386ffc771e..a4a3bb3e38 100644 --- a/src/Tests/Analyzers.Tests/RCS1114RemoveRedundantDelegateCreationTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1114RemoveRedundantDelegateCreationTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1118MarkLocalVariableAsConstTests.cs b/src/Tests/Analyzers.Tests/RCS1118MarkLocalVariableAsConstTests.cs index c097804a0a..3527c09e4f 100644 --- a/src/Tests/Analyzers.Tests/RCS1118MarkLocalVariableAsConstTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1118MarkLocalVariableAsConstTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1123AddParenthesesWhenNecessaryTests.cs b/src/Tests/Analyzers.Tests/RCS1123AddParenthesesWhenNecessaryTests.cs index 4e82122073..b5be5c5aef 100644 --- a/src/Tests/Analyzers.Tests/RCS1123AddParenthesesWhenNecessaryTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1123AddParenthesesWhenNecessaryTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1124InlineLocalVariableTests.cs b/src/Tests/Analyzers.Tests/RCS1124InlineLocalVariableTests.cs index b198dfac70..5ee26e5e52 100644 --- a/src/Tests/Analyzers.Tests/RCS1124InlineLocalVariableTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1124InlineLocalVariableTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1128UseCoalesceExpressionTests.cs b/src/Tests/Analyzers.Tests/RCS1128UseCoalesceExpressionTests.cs index 035d8bfb66..e3c3df4c9a 100644 --- a/src/Tests/Analyzers.Tests/RCS1128UseCoalesceExpressionTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1128UseCoalesceExpressionTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1128UseCoalesceExpressionTests2.cs b/src/Tests/Analyzers.Tests/RCS1128UseCoalesceExpressionTests2.cs index c1484bb286..6c90009cd5 100644 --- a/src/Tests/Analyzers.Tests/RCS1128UseCoalesceExpressionTests2.cs +++ b/src/Tests/Analyzers.Tests/RCS1128UseCoalesceExpressionTests2.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1129RemoveRedundantFieldInitializationTests.cs b/src/Tests/Analyzers.Tests/RCS1129RemoveRedundantFieldInitializationTests.cs index 9b05a13bf0..8c8cb9b442 100644 --- a/src/Tests/Analyzers.Tests/RCS1129RemoveRedundantFieldInitializationTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1129RemoveRedundantFieldInitializationTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1132RemoveRedundantOverridingMemberTests.cs b/src/Tests/Analyzers.Tests/RCS1132RemoveRedundantOverridingMemberTests.cs index 48ca96d98d..5443a475d6 100644 --- a/src/Tests/Analyzers.Tests/RCS1132RemoveRedundantOverridingMemberTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1132RemoveRedundantOverridingMemberTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1134RemoveRedundantStatementTests.cs b/src/Tests/Analyzers.Tests/RCS1134RemoveRedundantStatementTests.cs index 06dcb54edf..258c79b80a 100644 --- a/src/Tests/Analyzers.Tests/RCS1134RemoveRedundantStatementTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1134RemoveRedundantStatementTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1135DeclareEnumMemberWithZeroValueTests.cs b/src/Tests/Analyzers.Tests/RCS1135DeclareEnumMemberWithZeroValueTests.cs index b17a003a81..838bf8b846 100644 --- a/src/Tests/Analyzers.Tests/RCS1135DeclareEnumMemberWithZeroValueTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1135DeclareEnumMemberWithZeroValueTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1139AddSummaryElementToDocumentationCommentTests.cs b/src/Tests/Analyzers.Tests/RCS1139AddSummaryElementToDocumentationCommentTests.cs index 0d146cd206..0c4776516e 100644 --- a/src/Tests/Analyzers.Tests/RCS1139AddSummaryElementToDocumentationCommentTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1139AddSummaryElementToDocumentationCommentTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1141AddParamElementToDocumentationCommentTests.cs b/src/Tests/Analyzers.Tests/RCS1141AddParamElementToDocumentationCommentTests.cs index c08c594f4e..f205d054ec 100644 --- a/src/Tests/Analyzers.Tests/RCS1141AddParamElementToDocumentationCommentTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1141AddParamElementToDocumentationCommentTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1142AddTypeParamElementToDocumentationCommentTests.cs b/src/Tests/Analyzers.Tests/RCS1142AddTypeParamElementToDocumentationCommentTests.cs index 6c4d5688e4..21a3005202 100644 --- a/src/Tests/Analyzers.Tests/RCS1142AddTypeParamElementToDocumentationCommentTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1142AddTypeParamElementToDocumentationCommentTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1143SimplifyCoalesceExpressionTests.cs b/src/Tests/Analyzers.Tests/RCS1143SimplifyCoalesceExpressionTests.cs index 5cf3a64040..c154afbcae 100644 --- a/src/Tests/Analyzers.Tests/RCS1143SimplifyCoalesceExpressionTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1143SimplifyCoalesceExpressionTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1145RemoveRedundantAsOperatorTests.cs b/src/Tests/Analyzers.Tests/RCS1145RemoveRedundantAsOperatorTests.cs index 030079a22d..00cca1e9c1 100644 --- a/src/Tests/Analyzers.Tests/RCS1145RemoveRedundantAsOperatorTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1145RemoveRedundantAsOperatorTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1146UseConditionalAccessTests.cs b/src/Tests/Analyzers.Tests/RCS1146UseConditionalAccessTests.cs index f3c4c0b768..98d2aecb98 100644 --- a/src/Tests/Analyzers.Tests/RCS1146UseConditionalAccessTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1146UseConditionalAccessTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1151RemoveRedundantCastTests.cs b/src/Tests/Analyzers.Tests/RCS1151RemoveRedundantCastTests.cs index 6e45da6494..c3d099298d 100644 --- a/src/Tests/Analyzers.Tests/RCS1151RemoveRedundantCastTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1151RemoveRedundantCastTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1151RemoveRedundantCastTests2.cs b/src/Tests/Analyzers.Tests/RCS1151RemoveRedundantCastTests2.cs index 9e2ab70c65..fca4b458b6 100644 --- a/src/Tests/Analyzers.Tests/RCS1151RemoveRedundantCastTests2.cs +++ b/src/Tests/Analyzers.Tests/RCS1151RemoveRedundantCastTests2.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1154SortEnumMembersTests.cs b/src/Tests/Analyzers.Tests/RCS1154SortEnumMembersTests.cs index 9dba4581c1..ed2756fe5e 100644 --- a/src/Tests/Analyzers.Tests/RCS1154SortEnumMembersTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1154SortEnumMembersTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1156UseStringLengthInsteadOfComparisonWithEmptyStringTests.cs b/src/Tests/Analyzers.Tests/RCS1156UseStringLengthInsteadOfComparisonWithEmptyStringTests.cs index 9bc51d9e05..0cb388fee3 100644 --- a/src/Tests/Analyzers.Tests/RCS1156UseStringLengthInsteadOfComparisonWithEmptyStringTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1156UseStringLengthInsteadOfComparisonWithEmptyStringTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1157CompositeEnumValueContainsUndefinedFlagTests.cs b/src/Tests/Analyzers.Tests/RCS1157CompositeEnumValueContainsUndefinedFlagTests.cs index dada11399b..c3ed8b7a3f 100644 --- a/src/Tests/Analyzers.Tests/RCS1157CompositeEnumValueContainsUndefinedFlagTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1157CompositeEnumValueContainsUndefinedFlagTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1159UseGenericEventHandlerTests.cs b/src/Tests/Analyzers.Tests/RCS1159UseGenericEventHandlerTests.cs index 1059e07cdf..0afb5a7076 100644 --- a/src/Tests/Analyzers.Tests/RCS1159UseGenericEventHandlerTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1159UseGenericEventHandlerTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1161EnumMemberShouldDeclareExplicitValueTests.cs b/src/Tests/Analyzers.Tests/RCS1161EnumMemberShouldDeclareExplicitValueTests.cs index 51e1ae0f58..ee795322ea 100644 --- a/src/Tests/Analyzers.Tests/RCS1161EnumMemberShouldDeclareExplicitValueTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1161EnumMemberShouldDeclareExplicitValueTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1163UnusedParameterTests.cs b/src/Tests/Analyzers.Tests/RCS1163UnusedParameterTests.cs index 2869c7a851..bd698d7ac6 100644 --- a/src/Tests/Analyzers.Tests/RCS1163UnusedParameterTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1163UnusedParameterTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1164UnusedTypeParameterTests.cs b/src/Tests/Analyzers.Tests/RCS1164UnusedTypeParameterTests.cs index a70c2f9c21..ddc799ac49 100644 --- a/src/Tests/Analyzers.Tests/RCS1164UnusedTypeParameterTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1164UnusedTypeParameterTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1169MakeFieldReadOnlyTests.cs b/src/Tests/Analyzers.Tests/RCS1169MakeFieldReadOnlyTests.cs index 75b5d4f021..3703b05bf5 100644 --- a/src/Tests/Analyzers.Tests/RCS1169MakeFieldReadOnlyTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1169MakeFieldReadOnlyTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1170UseReadOnlyAutoPropertyTests.cs b/src/Tests/Analyzers.Tests/RCS1170UseReadOnlyAutoPropertyTests.cs index dea0de5847..16bd7aae48 100644 --- a/src/Tests/Analyzers.Tests/RCS1170UseReadOnlyAutoPropertyTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1170UseReadOnlyAutoPropertyTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1171SimplifyLazyInitializationTests.cs b/src/Tests/Analyzers.Tests/RCS1171SimplifyLazyInitializationTests.cs index 48a556b24f..1035484c97 100644 --- a/src/Tests/Analyzers.Tests/RCS1171SimplifyLazyInitializationTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1171SimplifyLazyInitializationTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1173UseCoalesceExpressionInsteadOfIfTests.cs b/src/Tests/Analyzers.Tests/RCS1173UseCoalesceExpressionInsteadOfIfTests.cs index ffad3a9dda..26339f428f 100644 --- a/src/Tests/Analyzers.Tests/RCS1173UseCoalesceExpressionInsteadOfIfTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1173UseCoalesceExpressionInsteadOfIfTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1174RemoveRedundantAsyncAwaitTests.cs b/src/Tests/Analyzers.Tests/RCS1174RemoveRedundantAsyncAwaitTests.cs index 0edaef1d15..2be719e4e2 100644 --- a/src/Tests/Analyzers.Tests/RCS1174RemoveRedundantAsyncAwaitTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1174RemoveRedundantAsyncAwaitTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1176UseVarInsteadOfExplicitTypeWhenTypeIsNotObviousTests.cs b/src/Tests/Analyzers.Tests/RCS1176UseVarInsteadOfExplicitTypeWhenTypeIsNotObviousTests.cs index ec2b58db52..efff207600 100644 --- a/src/Tests/Analyzers.Tests/RCS1176UseVarInsteadOfExplicitTypeWhenTypeIsNotObviousTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1176UseVarInsteadOfExplicitTypeWhenTypeIsNotObviousTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1177UseVarInsteadOfExplicitTypeInForEachTests.cs b/src/Tests/Analyzers.Tests/RCS1177UseVarInsteadOfExplicitTypeInForEachTests.cs index 363a29f632..0bbabd6f5d 100644 --- a/src/Tests/Analyzers.Tests/RCS1177UseVarInsteadOfExplicitTypeInForEachTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1177UseVarInsteadOfExplicitTypeInForEachTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1179UnnecessaryAssignmentTests.cs b/src/Tests/Analyzers.Tests/RCS1179UnnecessaryAssignmentTests.cs index f81cdd15b7..6d389a92cc 100644 --- a/src/Tests/Analyzers.Tests/RCS1179UnnecessaryAssignmentTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1179UnnecessaryAssignmentTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1180InlineLazyInitializationTests.cs b/src/Tests/Analyzers.Tests/RCS1180InlineLazyInitializationTests.cs index 0598fd9e40..9d9d46e014 100644 --- a/src/Tests/Analyzers.Tests/RCS1180InlineLazyInitializationTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1180InlineLazyInitializationTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1181ConvertCommentToDocumentationCommentTests.cs b/src/Tests/Analyzers.Tests/RCS1181ConvertCommentToDocumentationCommentTests.cs index 0c366209cc..ab56c2e29a 100644 --- a/src/Tests/Analyzers.Tests/RCS1181ConvertCommentToDocumentationCommentTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1181ConvertCommentToDocumentationCommentTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1182RemoveRedundantBaseInterfaceTests.cs b/src/Tests/Analyzers.Tests/RCS1182RemoveRedundantBaseInterfaceTests.cs index 2ed0770899..bf59660d98 100644 --- a/src/Tests/Analyzers.Tests/RCS1182RemoveRedundantBaseInterfaceTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1182RemoveRedundantBaseInterfaceTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1186UseRegexInstanceInsteadOfStaticMethodTests.cs b/src/Tests/Analyzers.Tests/RCS1186UseRegexInstanceInsteadOfStaticMethodTests.cs index 4d89631a75..358716124d 100644 --- a/src/Tests/Analyzers.Tests/RCS1186UseRegexInstanceInsteadOfStaticMethodTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1186UseRegexInstanceInsteadOfStaticMethodTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1187UseConstantInsteadOfFieldTests.cs b/src/Tests/Analyzers.Tests/RCS1187UseConstantInsteadOfFieldTests.cs index 8eca38b1d0..71439070a6 100644 --- a/src/Tests/Analyzers.Tests/RCS1187UseConstantInsteadOfFieldTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1187UseConstantInsteadOfFieldTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1188RemoveRedundantAutoPropertyInitializationTests.cs b/src/Tests/Analyzers.Tests/RCS1188RemoveRedundantAutoPropertyInitializationTests.cs index 6990cd3022..0b4674fb4e 100644 --- a/src/Tests/Analyzers.Tests/RCS1188RemoveRedundantAutoPropertyInitializationTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1188RemoveRedundantAutoPropertyInitializationTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1190JoinStringExpressionsTests.cs b/src/Tests/Analyzers.Tests/RCS1190JoinStringExpressionsTests.cs index 076b43fcba..39f27f545a 100644 --- a/src/Tests/Analyzers.Tests/RCS1190JoinStringExpressionsTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1190JoinStringExpressionsTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1191DeclareEnumValueAsCombinationOfNamesTests.cs b/src/Tests/Analyzers.Tests/RCS1191DeclareEnumValueAsCombinationOfNamesTests.cs index 4f8e7684a8..de40bf686c 100644 --- a/src/Tests/Analyzers.Tests/RCS1191DeclareEnumValueAsCombinationOfNamesTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1191DeclareEnumValueAsCombinationOfNamesTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1192UnnecessaryUsageOfVerbatimStringLiteralTests.cs b/src/Tests/Analyzers.Tests/RCS1192UnnecessaryUsageOfVerbatimStringLiteralTests.cs index ed0603b2b6..ee4bf516c9 100644 --- a/src/Tests/Analyzers.Tests/RCS1192UnnecessaryUsageOfVerbatimStringLiteralTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1192UnnecessaryUsageOfVerbatimStringLiteralTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1193OverridingMemberShouldNotChangeParamsModifierTests.cs b/src/Tests/Analyzers.Tests/RCS1193OverridingMemberShouldNotChangeParamsModifierTests.cs index 740b6715fc..53eba4e230 100644 --- a/src/Tests/Analyzers.Tests/RCS1193OverridingMemberShouldNotChangeParamsModifierTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1193OverridingMemberShouldNotChangeParamsModifierTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1194ImplementExceptionConstructorsTests.cs b/src/Tests/Analyzers.Tests/RCS1194ImplementExceptionConstructorsTests.cs index 0ba7de59f2..61ad4a10a6 100644 --- a/src/Tests/Analyzers.Tests/RCS1194ImplementExceptionConstructorsTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1194ImplementExceptionConstructorsTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1197OptimizeStringBuilderAppendCallTests.cs b/src/Tests/Analyzers.Tests/RCS1197OptimizeStringBuilderAppendCallTests.cs index 881e06b1ba..24ab0fdb35 100644 --- a/src/Tests/Analyzers.Tests/RCS1197OptimizeStringBuilderAppendCallTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1197OptimizeStringBuilderAppendCallTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1198AvoidBoxingOfValueTypeTests.cs b/src/Tests/Analyzers.Tests/RCS1198AvoidBoxingOfValueTypeTests.cs index 54fc1f7c8a..d9d40b8203 100644 --- a/src/Tests/Analyzers.Tests/RCS1198AvoidBoxingOfValueTypeTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1198AvoidBoxingOfValueTypeTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1198AvoidBoxingOfValueTypeTests2.cs b/src/Tests/Analyzers.Tests/RCS1198AvoidBoxingOfValueTypeTests2.cs index e5a962b086..68fc067caa 100644 --- a/src/Tests/Analyzers.Tests/RCS1198AvoidBoxingOfValueTypeTests2.cs +++ b/src/Tests/Analyzers.Tests/RCS1198AvoidBoxingOfValueTypeTests2.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1199UnnecessaryNullCheckTests.cs b/src/Tests/Analyzers.Tests/RCS1199UnnecessaryNullCheckTests.cs index 551f3ee158..27c6ca041d 100644 --- a/src/Tests/Analyzers.Tests/RCS1199UnnecessaryNullCheckTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1199UnnecessaryNullCheckTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1201UseMethodChainingTests.cs b/src/Tests/Analyzers.Tests/RCS1201UseMethodChainingTests.cs index 3046f88774..d199dbdbd5 100644 --- a/src/Tests/Analyzers.Tests/RCS1201UseMethodChainingTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1201UseMethodChainingTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1202AvoidNullReferenceExceptionTests.cs b/src/Tests/Analyzers.Tests/RCS1202AvoidNullReferenceExceptionTests.cs index ffe2116fef..4257d78ed2 100644 --- a/src/Tests/Analyzers.Tests/RCS1202AvoidNullReferenceExceptionTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1202AvoidNullReferenceExceptionTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1202AvoidNullReferenceExceptionTests2.cs b/src/Tests/Analyzers.Tests/RCS1202AvoidNullReferenceExceptionTests2.cs index 0fde0f5b8b..cd9112cf74 100644 --- a/src/Tests/Analyzers.Tests/RCS1202AvoidNullReferenceExceptionTests2.cs +++ b/src/Tests/Analyzers.Tests/RCS1202AvoidNullReferenceExceptionTests2.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1203UseAttributeUsageAttributeTests.cs b/src/Tests/Analyzers.Tests/RCS1203UseAttributeUsageAttributeTests.cs index a4622f0531..1bd0796084 100644 --- a/src/Tests/Analyzers.Tests/RCS1203UseAttributeUsageAttributeTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1203UseAttributeUsageAttributeTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1204UseEventArgsEmptyTests.cs b/src/Tests/Analyzers.Tests/RCS1204UseEventArgsEmptyTests.cs index c0387a1b2f..6d30ee9a4a 100644 --- a/src/Tests/Analyzers.Tests/RCS1204UseEventArgsEmptyTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1204UseEventArgsEmptyTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1205OrderNamedArgumentsTests.cs b/src/Tests/Analyzers.Tests/RCS1205OrderNamedArgumentsTests.cs index 67422b55ff..965dd6fd85 100644 --- a/src/Tests/Analyzers.Tests/RCS1205OrderNamedArgumentsTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1205OrderNamedArgumentsTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1206UseConditionalAccessInsteadOfConditionalExpressionTests.cs b/src/Tests/Analyzers.Tests/RCS1206UseConditionalAccessInsteadOfConditionalExpressionTests.cs index d08124a8e4..3320ae9a09 100644 --- a/src/Tests/Analyzers.Tests/RCS1206UseConditionalAccessInsteadOfConditionalExpressionTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1206UseConditionalAccessInsteadOfConditionalExpressionTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1207ConvertAnonymousFunctionToMethodGroupTests.cs b/src/Tests/Analyzers.Tests/RCS1207ConvertAnonymousFunctionToMethodGroupTests.cs index c4b936edff..303a82395d 100644 --- a/src/Tests/Analyzers.Tests/RCS1207ConvertAnonymousFunctionToMethodGroupTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1207ConvertAnonymousFunctionToMethodGroupTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1207ConvertMethodGroupToAnonymousFunctionTests.cs b/src/Tests/Analyzers.Tests/RCS1207ConvertMethodGroupToAnonymousFunctionTests.cs index 233f487739..9dd873f299 100644 --- a/src/Tests/Analyzers.Tests/RCS1207ConvertMethodGroupToAnonymousFunctionTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1207ConvertMethodGroupToAnonymousFunctionTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1208ReduceIfNestingTests.cs b/src/Tests/Analyzers.Tests/RCS1208ReduceIfNestingTests.cs index a6c5a1d3bd..ef0f749ead 100644 --- a/src/Tests/Analyzers.Tests/RCS1208ReduceIfNestingTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1208ReduceIfNestingTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1210ReturnCompletedTaskInsteadOfNullTests.cs b/src/Tests/Analyzers.Tests/RCS1210ReturnCompletedTaskInsteadOfNullTests.cs index 5a230289d0..ce11f4a884 100644 --- a/src/Tests/Analyzers.Tests/RCS1210ReturnCompletedTaskInsteadOfNullTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1210ReturnCompletedTaskInsteadOfNullTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1210ReturnCompletedTaskInsteadOfNullTests2.cs b/src/Tests/Analyzers.Tests/RCS1210ReturnCompletedTaskInsteadOfNullTests2.cs index 88fde4658f..4259349f7c 100644 --- a/src/Tests/Analyzers.Tests/RCS1210ReturnCompletedTaskInsteadOfNullTests2.cs +++ b/src/Tests/Analyzers.Tests/RCS1210ReturnCompletedTaskInsteadOfNullTests2.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1211RemoveUnnecessaryElseTests.cs b/src/Tests/Analyzers.Tests/RCS1211RemoveUnnecessaryElseTests.cs index a96f4d595d..0d98052322 100644 --- a/src/Tests/Analyzers.Tests/RCS1211RemoveUnnecessaryElseTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1211RemoveUnnecessaryElseTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1212RemoveRedundantAssignmentTests.cs b/src/Tests/Analyzers.Tests/RCS1212RemoveRedundantAssignmentTests.cs index babae9eb58..4cb67fb445 100644 --- a/src/Tests/Analyzers.Tests/RCS1212RemoveRedundantAssignmentTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1212RemoveRedundantAssignmentTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1213RemoveUnusedMemberDeclarationTests.cs b/src/Tests/Analyzers.Tests/RCS1213RemoveUnusedMemberDeclarationTests.cs index ab1b9066e5..8db3bd3c88 100644 --- a/src/Tests/Analyzers.Tests/RCS1213RemoveUnusedMemberDeclarationTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1213RemoveUnusedMemberDeclarationTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1214UnnecessaryInterpolatedStringTests.cs b/src/Tests/Analyzers.Tests/RCS1214UnnecessaryInterpolatedStringTests.cs index f7e1851afb..66fd38e237 100644 --- a/src/Tests/Analyzers.Tests/RCS1214UnnecessaryInterpolatedStringTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1214UnnecessaryInterpolatedStringTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1215ExpressionIsAlwaysEqualToTrueOrFalseTests.cs b/src/Tests/Analyzers.Tests/RCS1215ExpressionIsAlwaysEqualToTrueOrFalseTests.cs index cfcabd732a..f080272955 100644 --- a/src/Tests/Analyzers.Tests/RCS1215ExpressionIsAlwaysEqualToTrueOrFalseTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1215ExpressionIsAlwaysEqualToTrueOrFalseTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1218SimplifyCodeBranchingTests.cs b/src/Tests/Analyzers.Tests/RCS1218SimplifyCodeBranchingTests.cs index a31eed9270..5527c7085d 100644 --- a/src/Tests/Analyzers.Tests/RCS1218SimplifyCodeBranchingTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1218SimplifyCodeBranchingTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1220UsePatternMatchingInsteadOfIsAndCastTests.cs b/src/Tests/Analyzers.Tests/RCS1220UsePatternMatchingInsteadOfIsAndCastTests.cs index 2819c86e77..a5321c369d 100644 --- a/src/Tests/Analyzers.Tests/RCS1220UsePatternMatchingInsteadOfIsAndCastTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1220UsePatternMatchingInsteadOfIsAndCastTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1221UsePatternMatchingInsteadOfAsAndNullCheckTests.cs b/src/Tests/Analyzers.Tests/RCS1221UsePatternMatchingInsteadOfAsAndNullCheckTests.cs index 8b6c9cc6b5..d4d2cf5452 100644 --- a/src/Tests/Analyzers.Tests/RCS1221UsePatternMatchingInsteadOfAsAndNullCheckTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1221UsePatternMatchingInsteadOfAsAndNullCheckTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1222MergePreprocessorDirectivesTests.cs b/src/Tests/Analyzers.Tests/RCS1222MergePreprocessorDirectivesTests.cs index 0f05277751..e0ee08efbc 100644 --- a/src/Tests/Analyzers.Tests/RCS1222MergePreprocessorDirectivesTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1222MergePreprocessorDirectivesTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1223MarkTypeWithDebuggerDisplayAttributeTests.cs b/src/Tests/Analyzers.Tests/RCS1223MarkTypeWithDebuggerDisplayAttributeTests.cs index 9c8cf3a171..46247e107e 100644 --- a/src/Tests/Analyzers.Tests/RCS1223MarkTypeWithDebuggerDisplayAttributeTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1223MarkTypeWithDebuggerDisplayAttributeTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1224MakeMethodExtensionMethodTests.cs b/src/Tests/Analyzers.Tests/RCS1224MakeMethodExtensionMethodTests.cs index 410008eb0d..cdc2a9f1ea 100644 --- a/src/Tests/Analyzers.Tests/RCS1224MakeMethodExtensionMethodTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1224MakeMethodExtensionMethodTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1225MakeClassSealedTests.cs b/src/Tests/Analyzers.Tests/RCS1225MakeClassSealedTests.cs index a1462c5145..d4b0932adb 100644 --- a/src/Tests/Analyzers.Tests/RCS1225MakeClassSealedTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1225MakeClassSealedTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1226AddParagraphToDocumentationCommentTests.cs b/src/Tests/Analyzers.Tests/RCS1226AddParagraphToDocumentationCommentTests.cs index ce2f8c0543..afbc2ba139 100644 --- a/src/Tests/Analyzers.Tests/RCS1226AddParagraphToDocumentationCommentTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1226AddParagraphToDocumentationCommentTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1227ValidateArgumentsCorrectlyTests.cs b/src/Tests/Analyzers.Tests/RCS1227ValidateArgumentsCorrectlyTests.cs index 205ab87ec2..4d7b22b49e 100644 --- a/src/Tests/Analyzers.Tests/RCS1227ValidateArgumentsCorrectlyTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1227ValidateArgumentsCorrectlyTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1228UnusedElementInDocumentationCommentTests.cs b/src/Tests/Analyzers.Tests/RCS1228UnusedElementInDocumentationCommentTests.cs index f96c8b6d4a..b8af93598e 100644 --- a/src/Tests/Analyzers.Tests/RCS1228UnusedElementInDocumentationCommentTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1228UnusedElementInDocumentationCommentTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1229UseAsyncAwaitTests.cs b/src/Tests/Analyzers.Tests/RCS1229UseAsyncAwaitTests.cs index ec8d267108..b1c9100134 100644 --- a/src/Tests/Analyzers.Tests/RCS1229UseAsyncAwaitTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1229UseAsyncAwaitTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1230UnnecessaryExplicitUseOfEnumeratorTests.cs b/src/Tests/Analyzers.Tests/RCS1230UnnecessaryExplicitUseOfEnumeratorTests.cs index 376f7ab3a5..77ab2c27c3 100644 --- a/src/Tests/Analyzers.Tests/RCS1230UnnecessaryExplicitUseOfEnumeratorTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1230UnnecessaryExplicitUseOfEnumeratorTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1231MakeParameterRefReadOnlyTests.cs b/src/Tests/Analyzers.Tests/RCS1231MakeParameterRefReadOnlyTests.cs index 054c792a3c..6faad0b25b 100644 --- a/src/Tests/Analyzers.Tests/RCS1231MakeParameterRefReadOnlyTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1231MakeParameterRefReadOnlyTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1232OrderElementsInDocumentationCommentTests.cs b/src/Tests/Analyzers.Tests/RCS1232OrderElementsInDocumentationCommentTests.cs index 5f89034cf4..c644024c0e 100644 --- a/src/Tests/Analyzers.Tests/RCS1232OrderElementsInDocumentationCommentTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1232OrderElementsInDocumentationCommentTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1233UseShortCircuitingOperatorTests.cs b/src/Tests/Analyzers.Tests/RCS1233UseShortCircuitingOperatorTests.cs index d1a46df54b..2b329e71c5 100644 --- a/src/Tests/Analyzers.Tests/RCS1233UseShortCircuitingOperatorTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1233UseShortCircuitingOperatorTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1234DuplicateEnumValueTests.cs b/src/Tests/Analyzers.Tests/RCS1234DuplicateEnumValueTests.cs index 5a7fba7e10..19322b887e 100644 --- a/src/Tests/Analyzers.Tests/RCS1234DuplicateEnumValueTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1234DuplicateEnumValueTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1235OptimizeMethodCallTests.cs b/src/Tests/Analyzers.Tests/RCS1235OptimizeMethodCallTests.cs index 4f700c1609..4d94c55c2a 100644 --- a/src/Tests/Analyzers.Tests/RCS1235OptimizeMethodCallTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1235OptimizeMethodCallTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1236UseExceptionFilterTests.cs b/src/Tests/Analyzers.Tests/RCS1236UseExceptionFilterTests.cs index 9a157267d5..8d02b468b1 100644 --- a/src/Tests/Analyzers.Tests/RCS1236UseExceptionFilterTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1236UseExceptionFilterTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1237UseBitShiftOperatorTests.cs b/src/Tests/Analyzers.Tests/RCS1237UseBitShiftOperatorTests.cs index 79b765a928..c066bc1d78 100644 --- a/src/Tests/Analyzers.Tests/RCS1237UseBitShiftOperatorTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1237UseBitShiftOperatorTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1238AvoidNestedConditionalOperatorsTests.cs b/src/Tests/Analyzers.Tests/RCS1238AvoidNestedConditionalOperatorsTests.cs index bb283a991c..ba3b282c57 100644 --- a/src/Tests/Analyzers.Tests/RCS1238AvoidNestedConditionalOperatorsTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1238AvoidNestedConditionalOperatorsTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1239UseForStatementInsteadOfWhileStatementTests.cs b/src/Tests/Analyzers.Tests/RCS1239UseForStatementInsteadOfWhileStatementTests.cs index 18d7a81f19..e8de74fab5 100644 --- a/src/Tests/Analyzers.Tests/RCS1239UseForStatementInsteadOfWhileStatementTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1239UseForStatementInsteadOfWhileStatementTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1240UnnecessaryOperatorTests.cs b/src/Tests/Analyzers.Tests/RCS1240UnnecessaryOperatorTests.cs index 461334044e..77e0be592f 100644 --- a/src/Tests/Analyzers.Tests/RCS1240UnnecessaryOperatorTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1240UnnecessaryOperatorTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1241ImplementNonGenericCounterpartTests.cs b/src/Tests/Analyzers.Tests/RCS1241ImplementNonGenericCounterpartTests.cs index 2b1950c66b..e919fa3cef 100644 --- a/src/Tests/Analyzers.Tests/RCS1241ImplementNonGenericCounterpartTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1241ImplementNonGenericCounterpartTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1242DoNotPassNonReadOnlyStructByReadOnlyReferenceTests.cs b/src/Tests/Analyzers.Tests/RCS1242DoNotPassNonReadOnlyStructByReadOnlyReferenceTests.cs index 06e0270192..3b9b1e0ed7 100644 --- a/src/Tests/Analyzers.Tests/RCS1242DoNotPassNonReadOnlyStructByReadOnlyReferenceTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1242DoNotPassNonReadOnlyStructByReadOnlyReferenceTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1243DuplicateWordInCommentTests.cs b/src/Tests/Analyzers.Tests/RCS1243DuplicateWordInCommentTests.cs index 09171db921..b4d55d1ba4 100644 --- a/src/Tests/Analyzers.Tests/RCS1243DuplicateWordInCommentTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1243DuplicateWordInCommentTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1244SimplifyDefaultExpressionTests.cs b/src/Tests/Analyzers.Tests/RCS1244SimplifyDefaultExpressionTests.cs index 704dc76b07..a303e5ad59 100644 --- a/src/Tests/Analyzers.Tests/RCS1244SimplifyDefaultExpressionTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1244SimplifyDefaultExpressionTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1246UseElementAccessTests.cs b/src/Tests/Analyzers.Tests/RCS1246UseElementAccessTests.cs index 02aa644055..c8c33e869b 100644 --- a/src/Tests/Analyzers.Tests/RCS1246UseElementAccessTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1246UseElementAccessTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1247FixDocumentationCommentTagTests.cs b/src/Tests/Analyzers.Tests/RCS1247FixDocumentationCommentTagTests.cs index 652e81baed..3a103c1125 100644 --- a/src/Tests/Analyzers.Tests/RCS1247FixDocumentationCommentTagTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1247FixDocumentationCommentTagTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1248NormalizeNullCheckTests.cs b/src/Tests/Analyzers.Tests/RCS1248NormalizeNullCheckTests.cs index 09ba2dbfed..6ab1cd099a 100644 --- a/src/Tests/Analyzers.Tests/RCS1248NormalizeNullCheckTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1248NormalizeNullCheckTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1249UnnecessaryNullForgivingOperatorTests.cs b/src/Tests/Analyzers.Tests/RCS1249UnnecessaryNullForgivingOperatorTests.cs index 2b388a6fed..f6786a5967 100644 --- a/src/Tests/Analyzers.Tests/RCS1249UnnecessaryNullForgivingOperatorTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1249UnnecessaryNullForgivingOperatorTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1250UseImplicitOrExplicitObjectCreationTests.cs b/src/Tests/Analyzers.Tests/RCS1250UseImplicitOrExplicitObjectCreationTests.cs index 9e24b1c267..246b385fdc 100644 --- a/src/Tests/Analyzers.Tests/RCS1250UseImplicitOrExplicitObjectCreationTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1250UseImplicitOrExplicitObjectCreationTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1251RemoveUnnecessaryBracesTests.cs b/src/Tests/Analyzers.Tests/RCS1251RemoveUnnecessaryBracesTests.cs index 6bda36a52e..751021f181 100644 --- a/src/Tests/Analyzers.Tests/RCS1251RemoveUnnecessaryBracesTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1251RemoveUnnecessaryBracesTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1252NormalizeUsageOfInfiniteLoopTests.cs b/src/Tests/Analyzers.Tests/RCS1252NormalizeUsageOfInfiniteLoopTests.cs index 7e5189a082..514aac14ef 100644 --- a/src/Tests/Analyzers.Tests/RCS1252NormalizeUsageOfInfiniteLoopTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1252NormalizeUsageOfInfiniteLoopTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1253FormatDocumentationCommentSummaryTests.cs b/src/Tests/Analyzers.Tests/RCS1253FormatDocumentationCommentSummaryTests.cs index 451e6a3f0b..fc31e20b1e 100644 --- a/src/Tests/Analyzers.Tests/RCS1253FormatDocumentationCommentSummaryTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1253FormatDocumentationCommentSummaryTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1254NormalizeFormatOfEnumFlagValueTests.cs b/src/Tests/Analyzers.Tests/RCS1254NormalizeFormatOfEnumFlagValueTests.cs index c8b79fa36b..6b09ffe15a 100644 --- a/src/Tests/Analyzers.Tests/RCS1254NormalizeFormatOfEnumFlagValueTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1254NormalizeFormatOfEnumFlagValueTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1255SimplifyArgumentNullCheckTests.cs b/src/Tests/Analyzers.Tests/RCS1255SimplifyArgumentNullCheckTests.cs index 069dcf0d03..8ea82f8742 100644 --- a/src/Tests/Analyzers.Tests/RCS1255SimplifyArgumentNullCheckTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1255SimplifyArgumentNullCheckTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1256InvalidArgumentNullCheckTests.cs b/src/Tests/Analyzers.Tests/RCS1256InvalidArgumentNullCheckTests.cs index ae6731f3bb..079920a558 100644 --- a/src/Tests/Analyzers.Tests/RCS1256InvalidArgumentNullCheckTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1256InvalidArgumentNullCheckTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1257UseEnumFieldExplicitlyTests.cs b/src/Tests/Analyzers.Tests/RCS1257UseEnumFieldExplicitlyTests.cs index c814d98e13..2cc4c11345 100644 --- a/src/Tests/Analyzers.Tests/RCS1257UseEnumFieldExplicitlyTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1257UseEnumFieldExplicitlyTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1258UnnecessaryEnumFlagTests.cs b/src/Tests/Analyzers.Tests/RCS1258UnnecessaryEnumFlagTests.cs index 8fc4b8c85c..3c9b5c8dad 100644 --- a/src/Tests/Analyzers.Tests/RCS1258UnnecessaryEnumFlagTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1258UnnecessaryEnumFlagTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1259RemoveEmptySyntaxTests.cs b/src/Tests/Analyzers.Tests/RCS1259RemoveEmptySyntaxTests.cs index 8c3e3ebef5..0e0717cf21 100644 --- a/src/Tests/Analyzers.Tests/RCS1259RemoveEmptySyntaxTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1259RemoveEmptySyntaxTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/RCS1260AddOrRemoveTrailingCommaTests.cs b/src/Tests/Analyzers.Tests/RCS1260AddOrRemoveTrailingCommaTests.cs index 4d0111e3e3..5646d04b7f 100644 --- a/src/Tests/Analyzers.Tests/RCS1260AddOrRemoveTrailingCommaTests.cs +++ b/src/Tests/Analyzers.Tests/RCS1260AddOrRemoveTrailingCommaTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/ROS002AnalyzerOptionIsObsoleteTests.cs b/src/Tests/Analyzers.Tests/ROS002AnalyzerOptionIsObsoleteTests.cs index e03c3237b4..c7453012fb 100644 --- a/src/Tests/Analyzers.Tests/ROS002AnalyzerOptionIsObsoleteTests.cs +++ b/src/Tests/Analyzers.Tests/ROS002AnalyzerOptionIsObsoleteTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Analyzers.Tests/UnitTests/PatternMatchingVariableDeclarationHelperTests.cs b/src/Tests/Analyzers.Tests/UnitTests/PatternMatchingVariableDeclarationHelperTests.cs index 1e490d0a31..2b656a09d9 100644 --- a/src/Tests/Analyzers.Tests/UnitTests/PatternMatchingVariableDeclarationHelperTests.cs +++ b/src/Tests/Analyzers.Tests/UnitTests/PatternMatchingVariableDeclarationHelperTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Tests/Analyzers.Tests/_RCSTests.cs b/src/Tests/Analyzers.Tests/_RCSTests.cs index 9fb8bcf79d..cf5c76458f 100644 --- a/src/Tests/Analyzers.Tests/_RCSTests.cs +++ b/src/Tests/Analyzers.Tests/_RCSTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/CSharp.Tests/ExpressionChainTests.cs b/src/Tests/CSharp.Tests/ExpressionChainTests.cs index a2193b5e1f..530ac14ce0 100644 --- a/src/Tests/CSharp.Tests/ExpressionChainTests.cs +++ b/src/Tests/CSharp.Tests/ExpressionChainTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Tests/CSharp.Tests/SyntaxKindTests.cs b/src/Tests/CSharp.Tests/SyntaxKindTests.cs index 63609c9b36..65cddf418b 100644 --- a/src/Tests/CSharp.Tests/SyntaxKindTests.cs +++ b/src/Tests/CSharp.Tests/SyntaxKindTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9001UsePatternMatchingTests.cs b/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9001UsePatternMatchingTests.cs index 075a7df0a7..10a8246d13 100644 --- a/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9001UsePatternMatchingTests.cs +++ b/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9001UsePatternMatchingTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9002UsePropertySyntaxNodeSpanStartTests.cs b/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9002UsePropertySyntaxNodeSpanStartTests.cs index 7b966d4720..adaec134c6 100644 --- a/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9002UsePropertySyntaxNodeSpanStartTests.cs +++ b/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9002UsePropertySyntaxNodeSpanStartTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9003UnnecessaryConditionalAccessTests.cs b/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9003UnnecessaryConditionalAccessTests.cs index 86aa1aecb2..ec81a502c6 100644 --- a/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9003UnnecessaryConditionalAccessTests.cs +++ b/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9003UnnecessaryConditionalAccessTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9004CallAnyInsteadOfAccessingCountTests.cs b/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9004CallAnyInsteadOfAccessingCountTests.cs index 6facd4ec6d..1df987c698 100644 --- a/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9004CallAnyInsteadOfAccessingCountTests.cs +++ b/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9004CallAnyInsteadOfAccessingCountTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9005UnnecessaryNullCheckTests.cs b/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9005UnnecessaryNullCheckTests.cs index 022962d065..e36595048f 100644 --- a/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9005UnnecessaryNullCheckTests.cs +++ b/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9005UnnecessaryNullCheckTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9006UseElementAccessTests.cs b/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9006UseElementAccessTests.cs index 85d3657be1..a6a9cfdb46 100644 --- a/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9006UseElementAccessTests.cs +++ b/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9006UseElementAccessTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9007UseReturnValueTests.cs b/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9007UseReturnValueTests.cs index 06432f19f8..f8801f9ea9 100644 --- a/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9007UseReturnValueTests.cs +++ b/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9007UseReturnValueTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9008CallLastInsteadOfUsingElementAccessTests.cs b/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9008CallLastInsteadOfUsingElementAccessTests.cs index 6eca675edc..24e1a3fbb9 100644 --- a/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9008CallLastInsteadOfUsingElementAccessTests.cs +++ b/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9008CallLastInsteadOfUsingElementAccessTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9009UnknownLanguageNameTests.cs b/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9009UnknownLanguageNameTests.cs index 45dad3718c..3c451be81e 100644 --- a/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9009UnknownLanguageNameTests.cs +++ b/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9009UnknownLanguageNameTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9010SpecifyExportCodeRefactoringProviderAttributeNameTests.cs b/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9010SpecifyExportCodeRefactoringProviderAttributeNameTests.cs index 4395ae674f..5073aa7573 100644 --- a/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9010SpecifyExportCodeRefactoringProviderAttributeNameTests.cs +++ b/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9010SpecifyExportCodeRefactoringProviderAttributeNameTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9011SpecifyExportCodeFixProviderAttributeNameTests.cs b/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9011SpecifyExportCodeFixProviderAttributeNameTests.cs index 8d6d7d7d29..feaffd7fb9 100644 --- a/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9011SpecifyExportCodeFixProviderAttributeNameTests.cs +++ b/src/Tests/CodeAnalysis.Analyzers.Tests/RCS9011SpecifyExportCodeFixProviderAttributeNameTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/CodeAnalysis.Analyzers.Tests/_RCSTests.cs b/src/Tests/CodeAnalysis.Analyzers.Tests/_RCSTests.cs index 88444323c5..4d88a2eae5 100644 --- a/src/Tests/CodeAnalysis.Analyzers.Tests/_RCSTests.cs +++ b/src/Tests/CodeAnalysis.Analyzers.Tests/_RCSTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/CodeFixes.Tests/CS0029CannotImplicitlyConvertTypeTests.cs b/src/Tests/CodeFixes.Tests/CS0029CannotImplicitlyConvertTypeTests.cs index 909a0760ee..558b3faf10 100644 --- a/src/Tests/CodeFixes.Tests/CS0029CannotImplicitlyConvertTypeTests.cs +++ b/src/Tests/CodeFixes.Tests/CS0029CannotImplicitlyConvertTypeTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS0037CannotConvertNullToTypeBecauseItIsNonNullableValueTypeTests.cs b/src/Tests/CodeFixes.Tests/CS0037CannotConvertNullToTypeBecauseItIsNonNullableValueTypeTests.cs index fa8d157628..5d8acd3f27 100644 --- a/src/Tests/CodeFixes.Tests/CS0037CannotConvertNullToTypeBecauseItIsNonNullableValueTypeTests.cs +++ b/src/Tests/CodeFixes.Tests/CS0037CannotConvertNullToTypeBecauseItIsNonNullableValueTypeTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS0103NameDoesNotExistInCurrentContextTests.cs b/src/Tests/CodeFixes.Tests/CS0103NameDoesNotExistInCurrentContextTests.cs index 837a8dd5ce..4a3d1e2fb1 100644 --- a/src/Tests/CodeFixes.Tests/CS0103NameDoesNotExistInCurrentContextTests.cs +++ b/src/Tests/CodeFixes.Tests/CS0103NameDoesNotExistInCurrentContextTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS0106ModifierIsNotValidForThisItemTests.cs b/src/Tests/CodeFixes.Tests/CS0106ModifierIsNotValidForThisItemTests.cs index 4ba0e8f8fb..877c72961b 100644 --- a/src/Tests/CodeFixes.Tests/CS0106ModifierIsNotValidForThisItemTests.cs +++ b/src/Tests/CodeFixes.Tests/CS0106ModifierIsNotValidForThisItemTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS0119NameIsNotValidInGivenContextTests.cs b/src/Tests/CodeFixes.Tests/CS0119NameIsNotValidInGivenContextTests.cs index 2a77645c91..9347af46f1 100644 --- a/src/Tests/CodeFixes.Tests/CS0119NameIsNotValidInGivenContextTests.cs +++ b/src/Tests/CodeFixes.Tests/CS0119NameIsNotValidInGivenContextTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS0120ObjectReferenceIsRequiredForNonStaticMemberTests.cs b/src/Tests/CodeFixes.Tests/CS0120ObjectReferenceIsRequiredForNonStaticMemberTests.cs index f5ed658de8..46d9f0c171 100644 --- a/src/Tests/CodeFixes.Tests/CS0120ObjectReferenceIsRequiredForNonStaticMemberTests.cs +++ b/src/Tests/CodeFixes.Tests/CS0120ObjectReferenceIsRequiredForNonStaticMemberTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS0126ObjectOfTypeConvertibleToTypeIsRequiredTests.cs b/src/Tests/CodeFixes.Tests/CS0126ObjectOfTypeConvertibleToTypeIsRequiredTests.cs index 00989a376d..d6e7e57789 100644 --- a/src/Tests/CodeFixes.Tests/CS0126ObjectOfTypeConvertibleToTypeIsRequiredTests.cs +++ b/src/Tests/CodeFixes.Tests/CS0126ObjectOfTypeConvertibleToTypeIsRequiredTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS0131LeftHandSideOfAssignmentMustBeVariablePropertyOrIndexerTests.cs b/src/Tests/CodeFixes.Tests/CS0131LeftHandSideOfAssignmentMustBeVariablePropertyOrIndexerTests.cs index 19ef0e70ca..2ea6647282 100644 --- a/src/Tests/CodeFixes.Tests/CS0131LeftHandSideOfAssignmentMustBeVariablePropertyOrIndexerTests.cs +++ b/src/Tests/CodeFixes.Tests/CS0131LeftHandSideOfAssignmentMustBeVariablePropertyOrIndexerTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS0136LocalOrParameterCannotBeDeclaredInThisScopeTests.cs b/src/Tests/CodeFixes.Tests/CS0136LocalOrParameterCannotBeDeclaredInThisScopeTests.cs index ab1c3079a1..51f0ef7067 100644 --- a/src/Tests/CodeFixes.Tests/CS0136LocalOrParameterCannotBeDeclaredInThisScopeTests.cs +++ b/src/Tests/CodeFixes.Tests/CS0136LocalOrParameterCannotBeDeclaredInThisScopeTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS0162UnreachableCodeDetectedTests.cs b/src/Tests/CodeFixes.Tests/CS0162UnreachableCodeDetectedTests.cs index a6c1c35103..7ddf448160 100644 --- a/src/Tests/CodeFixes.Tests/CS0162UnreachableCodeDetectedTests.cs +++ b/src/Tests/CodeFixes.Tests/CS0162UnreachableCodeDetectedTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS0164LabelHasNotBeenReferencedTests.cs b/src/Tests/CodeFixes.Tests/CS0164LabelHasNotBeenReferencedTests.cs index e7c8deea75..70d03e3e40 100644 --- a/src/Tests/CodeFixes.Tests/CS0164LabelHasNotBeenReferencedTests.cs +++ b/src/Tests/CodeFixes.Tests/CS0164LabelHasNotBeenReferencedTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS0165UseOfUnassignedLocalVariableTests.cs b/src/Tests/CodeFixes.Tests/CS0165UseOfUnassignedLocalVariableTests.cs index 4a498cee78..09c281cbf0 100644 --- a/src/Tests/CodeFixes.Tests/CS0165UseOfUnassignedLocalVariableTests.cs +++ b/src/Tests/CodeFixes.Tests/CS0165UseOfUnassignedLocalVariableTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS0177OutParameterMustBeAssignedToBeforeControlLeavesCurrentMethodTests.cs b/src/Tests/CodeFixes.Tests/CS0177OutParameterMustBeAssignedToBeforeControlLeavesCurrentMethodTests.cs index 9b9f503cb7..8e55c3b5de 100644 --- a/src/Tests/CodeFixes.Tests/CS0177OutParameterMustBeAssignedToBeforeControlLeavesCurrentMethodTests.cs +++ b/src/Tests/CodeFixes.Tests/CS0177OutParameterMustBeAssignedToBeforeControlLeavesCurrentMethodTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS0191ReadOnlyFieldCannotBeAssignedToTests.cs b/src/Tests/CodeFixes.Tests/CS0191ReadOnlyFieldCannotBeAssignedToTests.cs index 8ea5205da1..e0843c0811 100644 --- a/src/Tests/CodeFixes.Tests/CS0191ReadOnlyFieldCannotBeAssignedToTests.cs +++ b/src/Tests/CodeFixes.Tests/CS0191ReadOnlyFieldCannotBeAssignedToTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS0192ReadOnlyFieldCannotBePassedAsRefOrOutValueTests.cs b/src/Tests/CodeFixes.Tests/CS0192ReadOnlyFieldCannotBePassedAsRefOrOutValueTests.cs index 3fde2342af..2658153364 100644 --- a/src/Tests/CodeFixes.Tests/CS0192ReadOnlyFieldCannotBePassedAsRefOrOutValueTests.cs +++ b/src/Tests/CodeFixes.Tests/CS0192ReadOnlyFieldCannotBePassedAsRefOrOutValueTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS0201OnlyAssignmentCallIncrementDecrementAndNewObjectExpressionsCanBeUsedAsStatementTests.cs b/src/Tests/CodeFixes.Tests/CS0201OnlyAssignmentCallIncrementDecrementAndNewObjectExpressionsCanBeUsedAsStatementTests.cs index 5bfd779842..7d3a55a360 100644 --- a/src/Tests/CodeFixes.Tests/CS0201OnlyAssignmentCallIncrementDecrementAndNewObjectExpressionsCanBeUsedAsStatementTests.cs +++ b/src/Tests/CodeFixes.Tests/CS0201OnlyAssignmentCallIncrementDecrementAndNewObjectExpressionsCanBeUsedAsStatementTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS0214_PointersAndFixedSizeBuffersMayOnlyBeUsedInUnsafeContextTests.cs b/src/Tests/CodeFixes.Tests/CS0214_PointersAndFixedSizeBuffersMayOnlyBeUsedInUnsafeContextTests.cs index e72cf4ec43..119195e8ce 100644 --- a/src/Tests/CodeFixes.Tests/CS0214_PointersAndFixedSizeBuffersMayOnlyBeUsedInUnsafeContextTests.cs +++ b/src/Tests/CodeFixes.Tests/CS0214_PointersAndFixedSizeBuffersMayOnlyBeUsedInUnsafeContextTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS0246TypeOrNamespaceNameCouldNotBeFoundTests.cs b/src/Tests/CodeFixes.Tests/CS0246TypeOrNamespaceNameCouldNotBeFoundTests.cs index 23dbb3f60e..39b2ba5ce1 100644 --- a/src/Tests/CodeFixes.Tests/CS0246TypeOrNamespaceNameCouldNotBeFoundTests.cs +++ b/src/Tests/CodeFixes.Tests/CS0246TypeOrNamespaceNameCouldNotBeFoundTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS0266CannotImplicitlyConvertTypeExplicitConversionExistsTests.cs b/src/Tests/CodeFixes.Tests/CS0266CannotImplicitlyConvertTypeExplicitConversionExistsTests.cs index 8308ce6a55..772de1f8d8 100644 --- a/src/Tests/CodeFixes.Tests/CS0266CannotImplicitlyConvertTypeExplicitConversionExistsTests.cs +++ b/src/Tests/CodeFixes.Tests/CS0266CannotImplicitlyConvertTypeExplicitConversionExistsTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS0507CannotChangeAccessModifiersWhenOverridingInheritedMemberTests.cs b/src/Tests/CodeFixes.Tests/CS0507CannotChangeAccessModifiersWhenOverridingInheritedMemberTests.cs index b251825873..072881b070 100644 --- a/src/Tests/CodeFixes.Tests/CS0507CannotChangeAccessModifiersWhenOverridingInheritedMemberTests.cs +++ b/src/Tests/CodeFixes.Tests/CS0507CannotChangeAccessModifiersWhenOverridingInheritedMemberTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS0508MethodReturnTypeMustMatchOverriddenMethodReturnTypeTests.cs b/src/Tests/CodeFixes.Tests/CS0508MethodReturnTypeMustMatchOverriddenMethodReturnTypeTests.cs index 9f2e06e836..c814c62af3 100644 --- a/src/Tests/CodeFixes.Tests/CS0508MethodReturnTypeMustMatchOverriddenMethodReturnTypeTests.cs +++ b/src/Tests/CodeFixes.Tests/CS0508MethodReturnTypeMustMatchOverriddenMethodReturnTypeTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS0539ExplicitInterfaceDeclarationIsNotMemberOfInterfaceTests.cs b/src/Tests/CodeFixes.Tests/CS0539ExplicitInterfaceDeclarationIsNotMemberOfInterfaceTests.cs index eeda21caf1..0adb32c179 100644 --- a/src/Tests/CodeFixes.Tests/CS0539ExplicitInterfaceDeclarationIsNotMemberOfInterfaceTests.cs +++ b/src/Tests/CodeFixes.Tests/CS0539ExplicitInterfaceDeclarationIsNotMemberOfInterfaceTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS0549NewVirtualMemberInSealedClassTests.cs b/src/Tests/CodeFixes.Tests/CS0549NewVirtualMemberInSealedClassTests.cs index 9624804021..64a48a6e9e 100644 --- a/src/Tests/CodeFixes.Tests/CS0549NewVirtualMemberInSealedClassTests.cs +++ b/src/Tests/CodeFixes.Tests/CS0549NewVirtualMemberInSealedClassTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS0621VirtualOrAbstractMembersCannotBePrivateTests.cs b/src/Tests/CodeFixes.Tests/CS0621VirtualOrAbstractMembersCannotBePrivateTests.cs index 71933f2f3d..1c38199c99 100644 --- a/src/Tests/CodeFixes.Tests/CS0621VirtualOrAbstractMembersCannotBePrivateTests.cs +++ b/src/Tests/CodeFixes.Tests/CS0621VirtualOrAbstractMembersCannotBePrivateTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS1003SyntaxErrorCharExpectedTests.cs b/src/Tests/CodeFixes.Tests/CS1003SyntaxErrorCharExpectedTests.cs index fa4eed33ac..e66a2b2512 100644 --- a/src/Tests/CodeFixes.Tests/CS1003SyntaxErrorCharExpectedTests.cs +++ b/src/Tests/CodeFixes.Tests/CS1003SyntaxErrorCharExpectedTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS1012TooManyCharactersInCharacterLiteralTests.cs b/src/Tests/CodeFixes.Tests/CS1012TooManyCharactersInCharacterLiteralTests.cs index ac8ee54fc0..a448f831fd 100644 --- a/src/Tests/CodeFixes.Tests/CS1012TooManyCharactersInCharacterLiteralTests.cs +++ b/src/Tests/CodeFixes.Tests/CS1012TooManyCharactersInCharacterLiteralTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS1061TypeDoesNotContainDefinitionAndNoExtensionMethodCouldBeFoundTests.cs b/src/Tests/CodeFixes.Tests/CS1061TypeDoesNotContainDefinitionAndNoExtensionMethodCouldBeFoundTests.cs index 4766013631..422eaeefb7 100644 --- a/src/Tests/CodeFixes.Tests/CS1061TypeDoesNotContainDefinitionAndNoExtensionMethodCouldBeFoundTests.cs +++ b/src/Tests/CodeFixes.Tests/CS1061TypeDoesNotContainDefinitionAndNoExtensionMethodCouldBeFoundTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS1620ArgumentMustBePassedWithRefOrOutKeywordTests.cs b/src/Tests/CodeFixes.Tests/CS1620ArgumentMustBePassedWithRefOrOutKeywordTests.cs index d64b3ebb6a..1a2384ac06 100644 --- a/src/Tests/CodeFixes.Tests/CS1620ArgumentMustBePassedWithRefOrOutKeywordTests.cs +++ b/src/Tests/CodeFixes.Tests/CS1620ArgumentMustBePassedWithRefOrOutKeywordTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS1624BodyCannotBeIteratorBlockBecauseTypeIsNotIteratorInterfaceTypeTests.cs b/src/Tests/CodeFixes.Tests/CS1624BodyCannotBeIteratorBlockBecauseTypeIsNotIteratorInterfaceTypeTests.cs index 50b1d9cec1..f45e68364e 100644 --- a/src/Tests/CodeFixes.Tests/CS1624BodyCannotBeIteratorBlockBecauseTypeIsNotIteratorInterfaceTypeTests.cs +++ b/src/Tests/CodeFixes.Tests/CS1624BodyCannotBeIteratorBlockBecauseTypeIsNotIteratorInterfaceTypeTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS1715MemberTypeMustMatchOverriddenMemberTypeTests.cs b/src/Tests/CodeFixes.Tests/CS1715MemberTypeMustMatchOverriddenMemberTypeTests.cs index e873ffbe3a..e2c45a61c7 100644 --- a/src/Tests/CodeFixes.Tests/CS1715MemberTypeMustMatchOverriddenMemberTypeTests.cs +++ b/src/Tests/CodeFixes.Tests/CS1715MemberTypeMustMatchOverriddenMemberTypeTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS1741RefOrOutParameterCannotHaveDefaultValueTests.cs b/src/Tests/CodeFixes.Tests/CS1741RefOrOutParameterCannotHaveDefaultValueTests.cs index 02d9ba5904..effdae2380 100644 --- a/src/Tests/CodeFixes.Tests/CS1741RefOrOutParameterCannotHaveDefaultValueTests.cs +++ b/src/Tests/CodeFixes.Tests/CS1741RefOrOutParameterCannotHaveDefaultValueTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS1750ValueCannotBeUsedAsDefaultParameterTests.cs b/src/Tests/CodeFixes.Tests/CS1750ValueCannotBeUsedAsDefaultParameterTests.cs index 15499f1993..d280c0a1e7 100644 --- a/src/Tests/CodeFixes.Tests/CS1750ValueCannotBeUsedAsDefaultParameterTests.cs +++ b/src/Tests/CodeFixes.Tests/CS1750ValueCannotBeUsedAsDefaultParameterTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS1983ReturnTypeOfAsyncMethodMustBeVoidOrTaskOrTaskOfTTests.cs b/src/Tests/CodeFixes.Tests/CS1983ReturnTypeOfAsyncMethodMustBeVoidOrTaskOrTaskOfTTests.cs index 12f6a61477..ff1636a14f 100644 --- a/src/Tests/CodeFixes.Tests/CS1983ReturnTypeOfAsyncMethodMustBeVoidOrTaskOrTaskOfTTests.cs +++ b/src/Tests/CodeFixes.Tests/CS1983ReturnTypeOfAsyncMethodMustBeVoidOrTaskOrTaskOfTTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS3002ReturnTypeIsNotCLSCompliantTests.cs b/src/Tests/CodeFixes.Tests/CS3002ReturnTypeIsNotCLSCompliantTests.cs index b526b5e708..95be2a646b 100644 --- a/src/Tests/CodeFixes.Tests/CS3002ReturnTypeIsNotCLSCompliantTests.cs +++ b/src/Tests/CodeFixes.Tests/CS3002ReturnTypeIsNotCLSCompliantTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS7036ThereIsNoArgumentGivenThatCorrespondsToRequiredFormalParameter.cs b/src/Tests/CodeFixes.Tests/CS7036ThereIsNoArgumentGivenThatCorrespondsToRequiredFormalParameter.cs index daba455676..fc258fac42 100644 --- a/src/Tests/CodeFixes.Tests/CS7036ThereIsNoArgumentGivenThatCorrespondsToRequiredFormalParameter.cs +++ b/src/Tests/CodeFixes.Tests/CS7036ThereIsNoArgumentGivenThatCorrespondsToRequiredFormalParameter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS8050OnlyAutoImplementedPropertiesCanHaveInitializersTests.cs b/src/Tests/CodeFixes.Tests/CS8050OnlyAutoImplementedPropertiesCanHaveInitializersTests.cs index 119422db6d..db241ebe47 100644 --- a/src/Tests/CodeFixes.Tests/CS8050OnlyAutoImplementedPropertiesCanHaveInitializersTests.cs +++ b/src/Tests/CodeFixes.Tests/CS8050OnlyAutoImplementedPropertiesCanHaveInitializersTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS8139CannotChangeTupleElementNameWhenOverridingInheritedMemberTests.cs b/src/Tests/CodeFixes.Tests/CS8139CannotChangeTupleElementNameWhenOverridingInheritedMemberTests.cs index 50d049bdc9..7100b07bfd 100644 --- a/src/Tests/CodeFixes.Tests/CS8139CannotChangeTupleElementNameWhenOverridingInheritedMemberTests.cs +++ b/src/Tests/CodeFixes.Tests/CS8139CannotChangeTupleElementNameWhenOverridingInheritedMemberTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS8403MethodWithIteratorBlockMustBeAsyncToReturnIAsyncEnumerableOfTTests.cs b/src/Tests/CodeFixes.Tests/CS8403MethodWithIteratorBlockMustBeAsyncToReturnIAsyncEnumerableOfTTests.cs index 1f111d8232..b12b71b808 100644 --- a/src/Tests/CodeFixes.Tests/CS8403MethodWithIteratorBlockMustBeAsyncToReturnIAsyncEnumerableOfTTests.cs +++ b/src/Tests/CodeFixes.Tests/CS8403MethodWithIteratorBlockMustBeAsyncToReturnIAsyncEnumerableOfTTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS8602DereferenceOfPossiblyNullReferenceTests.cs b/src/Tests/CodeFixes.Tests/CS8602DereferenceOfPossiblyNullReferenceTests.cs index 8570d2d556..734b8e4a0b 100644 --- a/src/Tests/CodeFixes.Tests/CS8602DereferenceOfPossiblyNullReferenceTests.cs +++ b/src/Tests/CodeFixes.Tests/CS8602DereferenceOfPossiblyNullReferenceTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS8604PossibleNullReferenceArgumentForParameter.cs b/src/Tests/CodeFixes.Tests/CS8604PossibleNullReferenceArgumentForParameter.cs index 7a9a23d826..5935f5bfae 100644 --- a/src/Tests/CodeFixes.Tests/CS8604PossibleNullReferenceArgumentForParameter.cs +++ b/src/Tests/CodeFixes.Tests/CS8604PossibleNullReferenceArgumentForParameter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS8618_NonNullableMemberIsUninitializedTests.cs b/src/Tests/CodeFixes.Tests/CS8618_NonNullableMemberIsUninitializedTests.cs index 8a1430e873..9efed42726 100644 --- a/src/Tests/CodeFixes.Tests/CS8618_NonNullableMemberIsUninitializedTests.cs +++ b/src/Tests/CodeFixes.Tests/CS8618_NonNullableMemberIsUninitializedTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS8625_CannotConvertNullLiteralToNonNullableReferenceTypeTests.cs b/src/Tests/CodeFixes.Tests/CS8625_CannotConvertNullLiteralToNonNullableReferenceTypeTests.cs index 84bf53d3c5..bd4d049486 100644 --- a/src/Tests/CodeFixes.Tests/CS8625_CannotConvertNullLiteralToNonNullableReferenceTypeTests.cs +++ b/src/Tests/CodeFixes.Tests/CS8625_CannotConvertNullLiteralToNonNullableReferenceTypeTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/CS8632AnnotationForNullableReferenceTypesShouldOnlyBeUsedWithinNullableAnnotationsContextTests.cs b/src/Tests/CodeFixes.Tests/CS8632AnnotationForNullableReferenceTypesShouldOnlyBeUsedWithinNullableAnnotationsContextTests.cs index 635d8fec68..3e976ba596 100644 --- a/src/Tests/CodeFixes.Tests/CS8632AnnotationForNullableReferenceTypesShouldOnlyBeUsedWithinNullableAnnotationsContextTests.cs +++ b/src/Tests/CodeFixes.Tests/CS8632AnnotationForNullableReferenceTypesShouldOnlyBeUsedWithinNullableAnnotationsContextTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/CodeFixes.Tests/_CSTests.cs b/src/Tests/CodeFixes.Tests/_CSTests.cs index 4605657de5..24555af6a8 100644 --- a/src/Tests/CodeFixes.Tests/_CSTests.cs +++ b/src/Tests/CodeFixes.Tests/_CSTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis.CodeFixes; diff --git a/src/Tests/Core.Tests/FileSystemHelpersTests.cs b/src/Tests/Core.Tests/FileSystemHelpersTests.cs index 11375283ba..aef4ee4059 100644 --- a/src/Tests/Core.Tests/FileSystemHelpersTests.cs +++ b/src/Tests/Core.Tests/FileSystemHelpersTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Xunit; diff --git a/src/Tests/Core.Tests/GeneratedCodeUtilityTests.cs b/src/Tests/Core.Tests/GeneratedCodeUtilityTests.cs index e17845e321..6cf8f50e4e 100644 --- a/src/Tests/Core.Tests/GeneratedCodeUtilityTests.cs +++ b/src/Tests/Core.Tests/GeneratedCodeUtilityTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Runtime.InteropServices; using Xunit; diff --git a/src/Tests/Core.Tests/MetadataNameTests.cs b/src/Tests/Core.Tests/MetadataNameTests.cs index 7297582bad..c5fbcef954 100644 --- a/src/Tests/Core.Tests/MetadataNameTests.cs +++ b/src/Tests/Core.Tests/MetadataNameTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Xunit; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0001AddBlankLineAfterEmbeddedStatementTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0001AddBlankLineAfterEmbeddedStatementTests.cs index eb58866fe3..af71838d17 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0001AddBlankLineAfterEmbeddedStatementTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0001AddBlankLineAfterEmbeddedStatementTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0002AddBlankLineAfterRegionDirectiveTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0002AddBlankLineAfterRegionDirectiveTests.cs index 6392013f7c..e547088578 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0002AddBlankLineAfterRegionDirectiveTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0002AddBlankLineAfterRegionDirectiveTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0003AddBlankLineAfterUsingDirectiveListTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0003AddBlankLineAfterUsingDirectiveListTests.cs index 0e96f5b517..c8f1bfdae4 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0003AddBlankLineAfterUsingDirectiveListTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0003AddBlankLineAfterUsingDirectiveListTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0005AddBlankLineBeforeEndRegionDirectiveTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0005AddBlankLineBeforeEndRegionDirectiveTests.cs index 18341f56f5..f4d2abb2d6 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0005AddBlankLineBeforeEndRegionDirectiveTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0005AddBlankLineBeforeEndRegionDirectiveTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0006AddEmptyLineBeforeUsingDirectiveListTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0006AddEmptyLineBeforeUsingDirectiveListTests.cs index 80247bd8b7..0d5feb57b7 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0006AddEmptyLineBeforeUsingDirectiveListTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0006AddEmptyLineBeforeUsingDirectiveListTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0007AddBlankLineBetweenAccessorsTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0007AddBlankLineBetweenAccessorsTests.cs index c56ed09aff..c760b394d2 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0007AddBlankLineBetweenAccessorsTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0007AddBlankLineBetweenAccessorsTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0008AddBlankLineBetweenClosingBraceAndNextStatementTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0008AddBlankLineBetweenClosingBraceAndNextStatementTests.cs index 3783ec7c81..b4e85ac14f 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0008AddBlankLineBetweenClosingBraceAndNextStatementTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0008AddBlankLineBetweenClosingBraceAndNextStatementTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0009AddEmptyLineBetweenDeclarationAndDocumentationCommentTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0009AddEmptyLineBetweenDeclarationAndDocumentationCommentTests.cs index d49eb330bc..cdc59b8988 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0009AddEmptyLineBetweenDeclarationAndDocumentationCommentTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0009AddEmptyLineBetweenDeclarationAndDocumentationCommentTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0010AddBlankLineBetweenDeclarationsTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0010AddBlankLineBetweenDeclarationsTests.cs index 4aed855214..fdad2ebc39 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0010AddBlankLineBetweenDeclarationsTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0010AddBlankLineBetweenDeclarationsTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0011BlankLineBetweenSingleLineAccessorsTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0011BlankLineBetweenSingleLineAccessorsTests.cs index 7e616d7712..2c38bb64aa 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0011BlankLineBetweenSingleLineAccessorsTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0011BlankLineBetweenSingleLineAccessorsTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0012AddBlankLineBetweenSingleLineDeclarationsTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0012AddBlankLineBetweenSingleLineDeclarationsTests.cs index 69ae154c18..8ab9b750e7 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0012AddBlankLineBetweenSingleLineDeclarationsTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0012AddBlankLineBetweenSingleLineDeclarationsTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0013AddBlankLineBetweenSingleLineDeclarationsOfDifferentKindTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0013AddBlankLineBetweenSingleLineDeclarationsOfDifferentKindTests.cs index 10002b57c0..8555b99457 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0013AddBlankLineBetweenSingleLineDeclarationsOfDifferentKindTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0013AddBlankLineBetweenSingleLineDeclarationsOfDifferentKindTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0014AddBlankLineBetweenSwitchSectionsTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0014AddBlankLineBetweenSwitchSectionsTests.cs index 0938ea3950..118d963896 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0014AddBlankLineBetweenSwitchSectionsTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0014AddBlankLineBetweenSwitchSectionsTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0015BlankLineBetweenUsingDirectivesTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0015BlankLineBetweenUsingDirectivesTests.cs index 5b784543c3..7df8ec1c58 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0015BlankLineBetweenUsingDirectivesTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0015BlankLineBetweenUsingDirectivesTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0016PutEachAttributeListOnItsOwnLineTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0016PutEachAttributeListOnItsOwnLineTests.cs index 08556fc419..2ccf3a98b0 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0016PutEachAttributeListOnItsOwnLineTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0016PutEachAttributeListOnItsOwnLineTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0020FormatAccessorBracesTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0020FormatAccessorBracesTests.cs index 85f7c0c44f..f71a0aea18 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0020FormatAccessorBracesTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0020FormatAccessorBracesTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0021FormatBlockBracesTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0021FormatBlockBracesTests.cs index 7f01839cca..168642f300 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0021FormatBlockBracesTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0021FormatBlockBracesTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0022AddNewLineAfterOpeningBraceOfEmptyBlockTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0022AddNewLineAfterOpeningBraceOfEmptyBlockTests.cs index 51d7f4f9bc..0e27d38733 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0022AddNewLineAfterOpeningBraceOfEmptyBlockTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0022AddNewLineAfterOpeningBraceOfEmptyBlockTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0023FormatTypeDeclarationBracesTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0023FormatTypeDeclarationBracesTests.cs index 50eff016d5..15ff10068a 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0023FormatTypeDeclarationBracesTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0023FormatTypeDeclarationBracesTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0024AddNewLineAfterSwitchLabelTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0024AddNewLineAfterSwitchLabelTests.cs index 880a32b408..1dd70eaf31 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0024AddNewLineAfterSwitchLabelTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0024AddNewLineAfterSwitchLabelTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0025PutFullAccessorOnItsOwnLineTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0025PutFullAccessorOnItsOwnLineTests.cs index 67fbb780f1..d1fca0b214 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0025PutFullAccessorOnItsOwnLineTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0025PutFullAccessorOnItsOwnLineTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0027PlaceNewLineAfterOrBeforeBinaryOperatorTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0027PlaceNewLineAfterOrBeforeBinaryOperatorTests.cs index b33591df6c..76e64c1b91 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0027PlaceNewLineAfterOrBeforeBinaryOperatorTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0027PlaceNewLineAfterOrBeforeBinaryOperatorTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0028PlaceNewLineAfterOrBeforeConditionalExpressionOperatorTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0028PlaceNewLineAfterOrBeforeConditionalExpressionOperatorTests.cs index 27f207461d..d2d66302bc 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0028PlaceNewLineAfterOrBeforeConditionalExpressionOperatorTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0028PlaceNewLineAfterOrBeforeConditionalExpressionOperatorTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0029AddNewLineBeforeConstructorInitializerTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0029AddNewLineBeforeConstructorInitializerTests.cs index 72c4e0be0c..3316a34b51 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0029AddNewLineBeforeConstructorInitializerTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0029AddNewLineBeforeConstructorInitializerTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0030AddNewLineBeforeEmbeddedStatementTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0030AddNewLineBeforeEmbeddedStatementTests.cs index 2fc735013b..f629de2f38 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0030AddNewLineBeforeEmbeddedStatementTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0030AddNewLineBeforeEmbeddedStatementTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0031PutEnumMemberOnItsOwnLineTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0031PutEnumMemberOnItsOwnLineTests.cs index aa3e92d51d..3fee89667b 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0031PutEnumMemberOnItsOwnLineTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0031PutEnumMemberOnItsOwnLineTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0032PlaceNewLineAfterOrBeforeArrowTokenTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0032PlaceNewLineAfterOrBeforeArrowTokenTests.cs index 14dbeef4b4..772a0f0159 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0032PlaceNewLineAfterOrBeforeArrowTokenTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0032PlaceNewLineAfterOrBeforeArrowTokenTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0033AddNewLineBeforeStatementTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0033AddNewLineBeforeStatementTests.cs index a26d6552dd..71e0e97b42 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0033AddNewLineBeforeStatementTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0033AddNewLineBeforeStatementTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0034PutTypeParameterConstraintOnItsOwnLineTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0034PutTypeParameterConstraintOnItsOwnLineTests.cs index 1d06d2e336..c4cdd767ab 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0034PutTypeParameterConstraintOnItsOwnLineTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0034PutTypeParameterConstraintOnItsOwnLineTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0036RemoveBlankLineBetweenSingleLineDeclarationsOfSameKindTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0036RemoveBlankLineBetweenSingleLineDeclarationsOfSameKindTests.cs index 9bfd5ac569..85cc14bf07 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0036RemoveBlankLineBetweenSingleLineDeclarationsOfSameKindTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0036RemoveBlankLineBetweenSingleLineDeclarationsOfSameKindTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0038RemoveBlankLineBetweenUsingDirectivesWithSameRootNamespaceTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0038RemoveBlankLineBetweenUsingDirectivesWithSameRootNamespaceTests.cs index a8551e0720..0edfda2105 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0038RemoveBlankLineBetweenUsingDirectivesWithSameRootNamespaceTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0038RemoveBlankLineBetweenUsingDirectivesWithSameRootNamespaceTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0039RemoveNewLineBeforeBaseListTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0039RemoveNewLineBeforeBaseListTests.cs index 60f78d000b..474b978bb7 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0039RemoveNewLineBeforeBaseListTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0039RemoveNewLineBeforeBaseListTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0041RemoveNewLineBetweenIfKeywordAndElseKeywordTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0041RemoveNewLineBetweenIfKeywordAndElseKeywordTests.cs index f4882cf383..ed4161f23b 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0041RemoveNewLineBetweenIfKeywordAndElseKeywordTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0041RemoveNewLineBetweenIfKeywordAndElseKeywordTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0042RemoveNewLinesFromAccessorListOfAutoPropertyTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0042RemoveNewLinesFromAccessorListOfAutoPropertyTests.cs index e6a2bd5e6f..af4f247222 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0042RemoveNewLinesFromAccessorListOfAutoPropertyTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0042RemoveNewLinesFromAccessorListOfAutoPropertyTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0043FormatAccessorBracesOnSingleLineWhenStatementIsOnSingleLineTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0043FormatAccessorBracesOnSingleLineWhenStatementIsOnSingleLineTests.cs index b6b0c6c5e1..9d4daad698 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0043FormatAccessorBracesOnSingleLineWhenStatementIsOnSingleLineTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0043FormatAccessorBracesOnSingleLineWhenStatementIsOnSingleLineTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0044UseCarriageReturnAndLinefeedAsNewLineTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0044UseCarriageReturnAndLinefeedAsNewLineTests.cs index bfc52ecdf0..d177d89d65 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0044UseCarriageReturnAndLinefeedAsNewLineTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0044UseCarriageReturnAndLinefeedAsNewLineTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0045UseLinefeedAsNewLineTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0045UseLinefeedAsNewLineTests.cs index 0646c78cbb..887cb2b05f 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0045UseLinefeedAsNewLineTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0045UseLinefeedAsNewLineTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0046UseSpacesInsteadOfTabTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0046UseSpacesInsteadOfTabTests.cs index 6cbb413b30..dcaec5f5cb 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0046UseSpacesInsteadOfTabTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0046UseSpacesInsteadOfTabTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0048PutInitializerOnSingleLineTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0048PutInitializerOnSingleLineTests.cs index 22822b4684..498bf79643 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0048PutInitializerOnSingleLineTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0048PutInitializerOnSingleLineTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0049AddBlankLineAfterTopCommentTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0049AddBlankLineAfterTopCommentTests.cs index 214d16e15d..9ef1ffaf52 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0049AddBlankLineAfterTopCommentTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0049AddBlankLineAfterTopCommentTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0050AddBlankLineBeforeTopDeclarationTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0050AddBlankLineBeforeTopDeclarationTests.cs index ee8b656f22..3e48799207 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0050AddBlankLineBeforeTopDeclarationTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0050AddBlankLineBeforeTopDeclarationTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0051AddOrRemoveNewLineBeforeWhileInDoStatementTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0051AddOrRemoveNewLineBeforeWhileInDoStatementTests.cs index d9bc7557df..c3bb28a0dd 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0051AddOrRemoveNewLineBeforeWhileInDoStatementTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0051AddOrRemoveNewLineBeforeWhileInDoStatementTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0052PlaceNewLineAfterOrBeforeEqualsSignTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0052PlaceNewLineAfterOrBeforeEqualsSignTests.cs index 8bd9962532..6258aba468 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0052PlaceNewLineAfterOrBeforeEqualsSignTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0052PlaceNewLineAfterOrBeforeEqualsSignTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0053FixFormattingOfListTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0053FixFormattingOfListTests.cs index b20840c69c..af3c0bfb05 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0053FixFormattingOfListTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0053FixFormattingOfListTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0054FixFormattingOfCallChainTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0054FixFormattingOfCallChainTests.cs index d29161b374..6e7a3e8f4c 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0054FixFormattingOfCallChainTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0054FixFormattingOfCallChainTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0055FixFormattingOfBinaryExpressionChainTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0055FixFormattingOfBinaryExpressionChainTests.cs index 16d99d60c9..535295d435 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0055FixFormattingOfBinaryExpressionChainTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0055FixFormattingOfBinaryExpressionChainTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0056LineIsTooLongTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0056LineIsTooLongTests.cs index 83c639f29d..5b7547ee59 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0056LineIsTooLongTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0056LineIsTooLongTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0057NormalizeWhitespaceAtBeginningOfFileTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0057NormalizeWhitespaceAtBeginningOfFileTests.cs index bba3872b82..fc61278339 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0057NormalizeWhitespaceAtBeginningOfFileTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0057NormalizeWhitespaceAtBeginningOfFileTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0058NormalizeWhitespaceAtEndOfFileTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0058NormalizeWhitespaceAtEndOfFileTests.cs index 2d34c755d8..4f889090e1 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0058NormalizeWhitespaceAtEndOfFileTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0058NormalizeWhitespaceAtEndOfFileTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0059PlaceNewLineAfterOrBeforeNullConditionalOperatorTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0059PlaceNewLineAfterOrBeforeNullConditionalOperatorTests.cs index a53829c32a..10c21525af 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0059PlaceNewLineAfterOrBeforeNullConditionalOperatorTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0059PlaceNewLineAfterOrBeforeNullConditionalOperatorTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/RCS0060AddEmptyLineAfterFileScopedNamespaceTests.cs b/src/Tests/Formatting.Analyzers.Tests/RCS0060AddEmptyLineAfterFileScopedNamespaceTests.cs index f63f995fd0..67f558e5c3 100644 --- a/src/Tests/Formatting.Analyzers.Tests/RCS0060AddEmptyLineAfterFileScopedNamespaceTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/RCS0060AddEmptyLineAfterFileScopedNamespaceTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Formatting.Analyzers.Tests/_RCSTests.cs b/src/Tests/Formatting.Analyzers.Tests/_RCSTests.cs index 6c6fab546f..2a32b5038d 100644 --- a/src/Tests/Formatting.Analyzers.Tests/_RCSTests.cs +++ b/src/Tests/Formatting.Analyzers.Tests/_RCSTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Refactorings.Tests/RR0011AddArgumentNameTests.cs b/src/Tests/Refactorings.Tests/RR0011AddArgumentNameTests.cs index 36d23fdf84..330d2e94b9 100644 --- a/src/Tests/Refactorings.Tests/RR0011AddArgumentNameTests.cs +++ b/src/Tests/Refactorings.Tests/RR0011AddArgumentNameTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0013AddUsingDirectiveTests.cs b/src/Tests/Refactorings.Tests/RR0013AddUsingDirectiveTests.cs index fe4b31ab1e..4d04dd2a87 100644 --- a/src/Tests/Refactorings.Tests/RR0013AddUsingDirectiveTests.cs +++ b/src/Tests/Refactorings.Tests/RR0013AddUsingDirectiveTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0014AddUsingStaticDirectiveTests.cs b/src/Tests/Refactorings.Tests/RR0014AddUsingStaticDirectiveTests.cs index c77f1ad9f7..ca159fd58f 100644 --- a/src/Tests/Refactorings.Tests/RR0014AddUsingStaticDirectiveTests.cs +++ b/src/Tests/Refactorings.Tests/RR0014AddUsingStaticDirectiveTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0021ChangeMethodReturnTypeToVoidTests.cs b/src/Tests/Refactorings.Tests/RR0021ChangeMethodReturnTypeToVoidTests.cs index 2688064d30..8d2988d556 100644 --- a/src/Tests/Refactorings.Tests/RR0021ChangeMethodReturnTypeToVoidTests.cs +++ b/src/Tests/Refactorings.Tests/RR0021ChangeMethodReturnTypeToVoidTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0022ChangeTypeAccordingToExpressionTests.cs b/src/Tests/Refactorings.Tests/RR0022ChangeTypeAccordingToExpressionTests.cs index 93f5bfff08..01e6aa5a7d 100644 --- a/src/Tests/Refactorings.Tests/RR0022ChangeTypeAccordingToExpressionTests.cs +++ b/src/Tests/Refactorings.Tests/RR0022ChangeTypeAccordingToExpressionTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0023UseExplicitTypeTests.cs b/src/Tests/Refactorings.Tests/RR0023UseExplicitTypeTests.cs index 18e6a17514..444c7973f4 100644 --- a/src/Tests/Refactorings.Tests/RR0023UseExplicitTypeTests.cs +++ b/src/Tests/Refactorings.Tests/RR0023UseExplicitTypeTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0025CheckParameterForNullTests.cs b/src/Tests/Refactorings.Tests/RR0025CheckParameterForNullTests.cs index fd3e32729b..89e67c6ec0 100644 --- a/src/Tests/Refactorings.Tests/RR0025CheckParameterForNullTests.cs +++ b/src/Tests/Refactorings.Tests/RR0025CheckParameterForNullTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0031CopyMemberDeclarationTests.cs b/src/Tests/Refactorings.Tests/RR0031CopyMemberDeclarationTests.cs index 0731dda44c..30b535b853 100644 --- a/src/Tests/Refactorings.Tests/RR0031CopyMemberDeclarationTests.cs +++ b/src/Tests/Refactorings.Tests/RR0031CopyMemberDeclarationTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0037ConvertExpressionBodyToBlockBodyTests.cs b/src/Tests/Refactorings.Tests/RR0037ConvertExpressionBodyToBlockBodyTests.cs index a338ebb080..be95f2eba3 100644 --- a/src/Tests/Refactorings.Tests/RR0037ConvertExpressionBodyToBlockBodyTests.cs +++ b/src/Tests/Refactorings.Tests/RR0037ConvertExpressionBodyToBlockBodyTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0041ConvertAutoPropertyToFullPropertyTests.cs b/src/Tests/Refactorings.Tests/RR0041ConvertAutoPropertyToFullPropertyTests.cs index c004413681..cbdbe95755 100644 --- a/src/Tests/Refactorings.Tests/RR0041ConvertAutoPropertyToFullPropertyTests.cs +++ b/src/Tests/Refactorings.Tests/RR0041ConvertAutoPropertyToFullPropertyTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0048WrapArgumentsTests.cs b/src/Tests/Refactorings.Tests/RR0048WrapArgumentsTests.cs index 33ee3fcbdc..f44408c0d5 100644 --- a/src/Tests/Refactorings.Tests/RR0048WrapArgumentsTests.cs +++ b/src/Tests/Refactorings.Tests/RR0048WrapArgumentsTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0051WrapCallChainTests.cs b/src/Tests/Refactorings.Tests/RR0051WrapCallChainTests.cs index 92948dbb6b..472cb1fa1d 100644 --- a/src/Tests/Refactorings.Tests/RR0051WrapCallChainTests.cs +++ b/src/Tests/Refactorings.Tests/RR0051WrapCallChainTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0052WrapInitializerExpressionsTests.cs b/src/Tests/Refactorings.Tests/RR0052WrapInitializerExpressionsTests.cs index 806edf5c9d..10ec10a188 100644 --- a/src/Tests/Refactorings.Tests/RR0052WrapInitializerExpressionsTests.cs +++ b/src/Tests/Refactorings.Tests/RR0052WrapInitializerExpressionsTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0053WrapParametersTests.cs b/src/Tests/Refactorings.Tests/RR0053WrapParametersTests.cs index 1699213ab7..7f1d62bfff 100644 --- a/src/Tests/Refactorings.Tests/RR0053WrapParametersTests.cs +++ b/src/Tests/Refactorings.Tests/RR0053WrapParametersTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0055GenerateCombinedEnumMemberTests.cs b/src/Tests/Refactorings.Tests/RR0055GenerateCombinedEnumMemberTests.cs index 1b1758f0c2..f69711a8f3 100644 --- a/src/Tests/Refactorings.Tests/RR0055GenerateCombinedEnumMemberTests.cs +++ b/src/Tests/Refactorings.Tests/RR0055GenerateCombinedEnumMemberTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0056GenerateEnumMemberTests.cs b/src/Tests/Refactorings.Tests/RR0056GenerateEnumMemberTests.cs index 2ab871adc8..aada3c5cfe 100644 --- a/src/Tests/Refactorings.Tests/RR0056GenerateEnumMemberTests.cs +++ b/src/Tests/Refactorings.Tests/RR0056GenerateEnumMemberTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0057GenerateEnumValuesTests.cs b/src/Tests/Refactorings.Tests/RR0057GenerateEnumValuesTests.cs index 95b0000b2e..312e05ca28 100644 --- a/src/Tests/Refactorings.Tests/RR0057GenerateEnumValuesTests.cs +++ b/src/Tests/Refactorings.Tests/RR0057GenerateEnumValuesTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0059AddMissingCasesToSwitchStatementTests.cs b/src/Tests/Refactorings.Tests/RR0059AddMissingCasesToSwitchStatementTests.cs index b2bd3e8fa8..a3ce7fca10 100644 --- a/src/Tests/Refactorings.Tests/RR0059AddMissingCasesToSwitchStatementTests.cs +++ b/src/Tests/Refactorings.Tests/RR0059AddMissingCasesToSwitchStatementTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0062InlineMethodTests.cs b/src/Tests/Refactorings.Tests/RR0062InlineMethodTests.cs index ca2ba5bdc9..af4352f2fa 100644 --- a/src/Tests/Refactorings.Tests/RR0062InlineMethodTests.cs +++ b/src/Tests/Refactorings.Tests/RR0062InlineMethodTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0063InsertStringInterpolationTests.cs b/src/Tests/Refactorings.Tests/RR0063InsertStringInterpolationTests.cs index 288dbd1eb3..a8effa5d8b 100644 --- a/src/Tests/Refactorings.Tests/RR0063InsertStringInterpolationTests.cs +++ b/src/Tests/Refactorings.Tests/RR0063InsertStringInterpolationTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0065IntroduceAndInitializePropertyTests.cs b/src/Tests/Refactorings.Tests/RR0065IntroduceAndInitializePropertyTests.cs index e063d63894..6402ccc8f7 100644 --- a/src/Tests/Refactorings.Tests/RR0065IntroduceAndInitializePropertyTests.cs +++ b/src/Tests/Refactorings.Tests/RR0065IntroduceAndInitializePropertyTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0075MergeIfStatementsTests.cs b/src/Tests/Refactorings.Tests/RR0075MergeIfStatementsTests.cs index c7d27c4de3..0df230d139 100644 --- a/src/Tests/Refactorings.Tests/RR0075MergeIfStatementsTests.cs +++ b/src/Tests/Refactorings.Tests/RR0075MergeIfStatementsTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0078JoinStringExpressionsTests.cs b/src/Tests/Refactorings.Tests/RR0078JoinStringExpressionsTests.cs index dcc10c5ba5..330528d73b 100644 --- a/src/Tests/Refactorings.Tests/RR0078JoinStringExpressionsTests.cs +++ b/src/Tests/Refactorings.Tests/RR0078JoinStringExpressionsTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading.Tasks; diff --git a/src/Tests/Refactorings.Tests/RR0081InvertIsExpressionTests.cs b/src/Tests/Refactorings.Tests/RR0081InvertIsExpressionTests.cs index 9611cb2f01..9bafb3a40d 100644 --- a/src/Tests/Refactorings.Tests/RR0081InvertIsExpressionTests.cs +++ b/src/Tests/Refactorings.Tests/RR0081InvertIsExpressionTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0083NotifyWhenPropertyChangesTests.cs b/src/Tests/Refactorings.Tests/RR0083NotifyWhenPropertyChangesTests.cs index 653b4962e8..4bfd45d262 100644 --- a/src/Tests/Refactorings.Tests/RR0083NotifyWhenPropertyChangesTests.cs +++ b/src/Tests/Refactorings.Tests/RR0083NotifyWhenPropertyChangesTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0084ParenthesizeExpressionTests.cs b/src/Tests/Refactorings.Tests/RR0084ParenthesizeExpressionTests.cs index 6553e76ea7..6fe199e195 100644 --- a/src/Tests/Refactorings.Tests/RR0084ParenthesizeExpressionTests.cs +++ b/src/Tests/Refactorings.Tests/RR0084ParenthesizeExpressionTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0085PromoteLocalVariableToParameterTests.cs b/src/Tests/Refactorings.Tests/RR0085PromoteLocalVariableToParameterTests.cs index 04c672f364..8145652cbb 100644 --- a/src/Tests/Refactorings.Tests/RR0085PromoteLocalVariableToParameterTests.cs +++ b/src/Tests/Refactorings.Tests/RR0085PromoteLocalVariableToParameterTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0086RemoveAllCommentsTests.cs b/src/Tests/Refactorings.Tests/RR0086RemoveAllCommentsTests.cs index 6e9f2dca0b..28fe6126b8 100644 --- a/src/Tests/Refactorings.Tests/RR0086RemoveAllCommentsTests.cs +++ b/src/Tests/Refactorings.Tests/RR0086RemoveAllCommentsTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0090RemoveAllPreprocessorDirectivesTests.cs b/src/Tests/Refactorings.Tests/RR0090RemoveAllPreprocessorDirectivesTests.cs index 8a0f41f045..fb44291c47 100644 --- a/src/Tests/Refactorings.Tests/RR0090RemoveAllPreprocessorDirectivesTests.cs +++ b/src/Tests/Refactorings.Tests/RR0090RemoveAllPreprocessorDirectivesTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0095RemoveBracesFromIfElseTests.cs b/src/Tests/Refactorings.Tests/RR0095RemoveBracesFromIfElseTests.cs index bd9b209a87..f07e8cc237 100644 --- a/src/Tests/Refactorings.Tests/RR0095RemoveBracesFromIfElseTests.cs +++ b/src/Tests/Refactorings.Tests/RR0095RemoveBracesFromIfElseTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0098RemoveCommentTests.cs b/src/Tests/Refactorings.Tests/RR0098RemoveCommentTests.cs index 7154602430..7f267c98dc 100644 --- a/src/Tests/Refactorings.Tests/RR0098RemoveCommentTests.cs +++ b/src/Tests/Refactorings.Tests/RR0098RemoveCommentTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0103RemoveMemberDeclarationTests.cs b/src/Tests/Refactorings.Tests/RR0103RemoveMemberDeclarationTests.cs index f95ea92a46..ed99138dc7 100644 --- a/src/Tests/Refactorings.Tests/RR0103RemoveMemberDeclarationTests.cs +++ b/src/Tests/Refactorings.Tests/RR0103RemoveMemberDeclarationTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0109RemoveStatementTests.cs b/src/Tests/Refactorings.Tests/RR0109RemoveStatementTests.cs index fadfdc7609..cf71e195e1 100644 --- a/src/Tests/Refactorings.Tests/RR0109RemoveStatementTests.cs +++ b/src/Tests/Refactorings.Tests/RR0109RemoveStatementTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0112RenameIdentifierAccordingToTypeNameTest.cs b/src/Tests/Refactorings.Tests/RR0112RenameIdentifierAccordingToTypeNameTest.cs index 1644df204e..d9175f7e80 100644 --- a/src/Tests/Refactorings.Tests/RR0112RenameIdentifierAccordingToTypeNameTest.cs +++ b/src/Tests/Refactorings.Tests/RR0112RenameIdentifierAccordingToTypeNameTest.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0116InvertLinqMethodCallTests.cs b/src/Tests/Refactorings.Tests/RR0116InvertLinqMethodCallTests.cs index 0ea291a3f4..3ccb00174d 100644 --- a/src/Tests/Refactorings.Tests/RR0116InvertLinqMethodCallTests.cs +++ b/src/Tests/Refactorings.Tests/RR0116InvertLinqMethodCallTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0117ReplaceAsExpressionWithExplicitCastTests.cs b/src/Tests/Refactorings.Tests/RR0117ReplaceAsExpressionWithExplicitCastTests.cs index d8f7f71c4f..06c0c601b9 100644 --- a/src/Tests/Refactorings.Tests/RR0117ReplaceAsExpressionWithExplicitCastTests.cs +++ b/src/Tests/Refactorings.Tests/RR0117ReplaceAsExpressionWithExplicitCastTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0118ReplaceExplicitCastWithAsExpressionTests.cs b/src/Tests/Refactorings.Tests/RR0118ReplaceExplicitCastWithAsExpressionTests.cs index 9a442e3925..2ef785309b 100644 --- a/src/Tests/Refactorings.Tests/RR0118ReplaceExplicitCastWithAsExpressionTests.cs +++ b/src/Tests/Refactorings.Tests/RR0118ReplaceExplicitCastWithAsExpressionTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0120ConvertConditionalExpressionToIfElseTests.cs b/src/Tests/Refactorings.Tests/RR0120ConvertConditionalExpressionToIfElseTests.cs index 1f565ad487..1dc7f2b535 100644 --- a/src/Tests/Refactorings.Tests/RR0120ConvertConditionalExpressionToIfElseTests.cs +++ b/src/Tests/Refactorings.Tests/RR0120ConvertConditionalExpressionToIfElseTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0124ReplaceEqualityOperatorWithStringEqualsTests.cs b/src/Tests/Refactorings.Tests/RR0124ReplaceEqualityOperatorWithStringEqualsTests.cs index 6beaca4ce5..88243062e1 100644 --- a/src/Tests/Refactorings.Tests/RR0124ReplaceEqualityOperatorWithStringEqualsTests.cs +++ b/src/Tests/Refactorings.Tests/RR0124ReplaceEqualityOperatorWithStringEqualsTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0127InlineConstantValueTests.cs b/src/Tests/Refactorings.Tests/RR0127InlineConstantValueTests.cs index 112d220601..e7e7f21ad7 100644 --- a/src/Tests/Refactorings.Tests/RR0127InlineConstantValueTests.cs +++ b/src/Tests/Refactorings.Tests/RR0127InlineConstantValueTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0130ConvertForToForEachTests.cs b/src/Tests/Refactorings.Tests/RR0130ConvertForToForEachTests.cs index 087de1fe22..f0f7b95537 100644 --- a/src/Tests/Refactorings.Tests/RR0130ConvertForToForEachTests.cs +++ b/src/Tests/Refactorings.Tests/RR0130ConvertForToForEachTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0131ConvertForToWhileTests.cs b/src/Tests/Refactorings.Tests/RR0131ConvertForToWhileTests.cs index 1094e7589d..3ca12ad268 100644 --- a/src/Tests/Refactorings.Tests/RR0131ConvertForToWhileTests.cs +++ b/src/Tests/Refactorings.Tests/RR0131ConvertForToWhileTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0133ConvertIfToSwitchTests.cs b/src/Tests/Refactorings.Tests/RR0133ConvertIfToSwitchTests.cs index 66cd70461d..7e150a7f06 100644 --- a/src/Tests/Refactorings.Tests/RR0133ConvertIfToSwitchTests.cs +++ b/src/Tests/Refactorings.Tests/RR0133ConvertIfToSwitchTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0137ConvertMethodGroupToLambdaTests.cs b/src/Tests/Refactorings.Tests/RR0137ConvertMethodGroupToLambdaTests.cs index ad87f0c017..079a552d4e 100644 --- a/src/Tests/Refactorings.Tests/RR0137ConvertMethodGroupToLambdaTests.cs +++ b/src/Tests/Refactorings.Tests/RR0137ConvertMethodGroupToLambdaTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0139ReplaceNullLiteralWithDefaultExpressionTests.cs b/src/Tests/Refactorings.Tests/RR0139ReplaceNullLiteralWithDefaultExpressionTests.cs index fd00b6f0ea..c71c144375 100644 --- a/src/Tests/Refactorings.Tests/RR0139ReplaceNullLiteralWithDefaultExpressionTests.cs +++ b/src/Tests/Refactorings.Tests/RR0139ReplaceNullLiteralWithDefaultExpressionTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0143ConvertReturnStatementToIfTests.cs b/src/Tests/Refactorings.Tests/RR0143ConvertReturnStatementToIfTests.cs index 8d9530c63d..261a6451a9 100644 --- a/src/Tests/Refactorings.Tests/RR0143ConvertReturnStatementToIfTests.cs +++ b/src/Tests/Refactorings.Tests/RR0143ConvertReturnStatementToIfTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0147ConvertSwitchToIfTests.cs b/src/Tests/Refactorings.Tests/RR0147ConvertSwitchToIfTests.cs index 778bfe177b..bf00d1b5f8 100644 --- a/src/Tests/Refactorings.Tests/RR0147ConvertSwitchToIfTests.cs +++ b/src/Tests/Refactorings.Tests/RR0147ConvertSwitchToIfTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0150ConvertWhileToDoTests.cs b/src/Tests/Refactorings.Tests/RR0150ConvertWhileToDoTests.cs index 51c848cfeb..9d59b21d86 100644 --- a/src/Tests/Refactorings.Tests/RR0150ConvertWhileToDoTests.cs +++ b/src/Tests/Refactorings.Tests/RR0150ConvertWhileToDoTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0151ConvertWhileToForTests.cs b/src/Tests/Refactorings.Tests/RR0151ConvertWhileToForTests.cs index 6ca31e1ac5..5761dee5ff 100644 --- a/src/Tests/Refactorings.Tests/RR0151ConvertWhileToForTests.cs +++ b/src/Tests/Refactorings.Tests/RR0151ConvertWhileToForTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0159SwapBinaryOperandsTests.cs b/src/Tests/Refactorings.Tests/RR0159SwapBinaryOperandsTests.cs index 93521c6dd3..fff2961153 100644 --- a/src/Tests/Refactorings.Tests/RR0159SwapBinaryOperandsTests.cs +++ b/src/Tests/Refactorings.Tests/RR0159SwapBinaryOperandsTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0162InvertIfElseTests.cs b/src/Tests/Refactorings.Tests/RR0162InvertIfElseTests.cs index 8da2fae1c8..91b51de75b 100644 --- a/src/Tests/Refactorings.Tests/RR0162InvertIfElseTests.cs +++ b/src/Tests/Refactorings.Tests/RR0162InvertIfElseTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0166ConvertIfToConditionalExpressionTests.cs b/src/Tests/Refactorings.Tests/RR0166ConvertIfToConditionalExpressionTests.cs index 3237ded9d9..da0b4b06e3 100644 --- a/src/Tests/Refactorings.Tests/RR0166ConvertIfToConditionalExpressionTests.cs +++ b/src/Tests/Refactorings.Tests/RR0166ConvertIfToConditionalExpressionTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0169ConvertBlockBodyToExpressionBodyTests.cs b/src/Tests/Refactorings.Tests/RR0169ConvertBlockBodyToExpressionBodyTests.cs index e58fef3e6d..1801375586 100644 --- a/src/Tests/Refactorings.Tests/RR0169ConvertBlockBodyToExpressionBodyTests.cs +++ b/src/Tests/Refactorings.Tests/RR0169ConvertBlockBodyToExpressionBodyTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0175WrapLinesInRegionTests.cs b/src/Tests/Refactorings.Tests/RR0175WrapLinesInRegionTests.cs index 11478f02ad..d3113cf6e5 100644 --- a/src/Tests/Refactorings.Tests/RR0175WrapLinesInRegionTests.cs +++ b/src/Tests/Refactorings.Tests/RR0175WrapLinesInRegionTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0178AddGenericParameterToDeclarationTests.cs b/src/Tests/Refactorings.Tests/RR0178AddGenericParameterToDeclarationTests.cs index 9e42f82d55..61e4f70f9c 100644 --- a/src/Tests/Refactorings.Tests/RR0178AddGenericParameterToDeclarationTests.cs +++ b/src/Tests/Refactorings.Tests/RR0178AddGenericParameterToDeclarationTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0180InlineUsingStaticDirectiveTests.cs b/src/Tests/Refactorings.Tests/RR0180InlineUsingStaticDirectiveTests.cs index 5055bf145d..470e02147a 100644 --- a/src/Tests/Refactorings.Tests/RR0180InlineUsingStaticDirectiveTests.cs +++ b/src/Tests/Refactorings.Tests/RR0180InlineUsingStaticDirectiveTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0184SplitIfTests.cs b/src/Tests/Refactorings.Tests/RR0184SplitIfTests.cs index 40514dc2bb..88d6558b27 100644 --- a/src/Tests/Refactorings.Tests/RR0184SplitIfTests.cs +++ b/src/Tests/Refactorings.Tests/RR0184SplitIfTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0185RemoveInstantiationOfLocalVariableTests.cs b/src/Tests/Refactorings.Tests/RR0185RemoveInstantiationOfLocalVariableTests.cs index 12cb051b69..d1a78da6d4 100644 --- a/src/Tests/Refactorings.Tests/RR0185RemoveInstantiationOfLocalVariableTests.cs +++ b/src/Tests/Refactorings.Tests/RR0185RemoveInstantiationOfLocalVariableTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0186ChangeAccessibilityTests.cs b/src/Tests/Refactorings.Tests/RR0186ChangeAccessibilityTests.cs index b7277f0235..cb75a91ee2 100644 --- a/src/Tests/Refactorings.Tests/RR0186ChangeAccessibilityTests.cs +++ b/src/Tests/Refactorings.Tests/RR0186ChangeAccessibilityTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Refactorings.Tests/RR0189InvertIfTests.cs b/src/Tests/Refactorings.Tests/RR0189InvertIfTests.cs index 90e5dc8d97..75eff45e22 100644 --- a/src/Tests/Refactorings.Tests/RR0189InvertIfTests.cs +++ b/src/Tests/Refactorings.Tests/RR0189InvertIfTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0194SplitLocalDeclarationAndAssignmentTests.cs b/src/Tests/Refactorings.Tests/RR0194SplitLocalDeclarationAndAssignmentTests.cs index e7c8f0a2f5..a61b875b7c 100644 --- a/src/Tests/Refactorings.Tests/RR0194SplitLocalDeclarationAndAssignmentTests.cs +++ b/src/Tests/Refactorings.Tests/RR0194SplitLocalDeclarationAndAssignmentTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0197InitializeFieldFromConstructorTests.cs b/src/Tests/Refactorings.Tests/RR0197InitializeFieldFromConstructorTests.cs index 7e7e992349..8d3b088bbe 100644 --- a/src/Tests/Refactorings.Tests/RR0197InitializeFieldFromConstructorTests.cs +++ b/src/Tests/Refactorings.Tests/RR0197InitializeFieldFromConstructorTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0198InlinePropertyTests.cs b/src/Tests/Refactorings.Tests/RR0198InlinePropertyTests.cs index 96d348b3e1..8c579d3fdf 100644 --- a/src/Tests/Refactorings.Tests/RR0198InlinePropertyTests.cs +++ b/src/Tests/Refactorings.Tests/RR0198InlinePropertyTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0199RemoveEnumMemberValueTests.cs b/src/Tests/Refactorings.Tests/RR0199RemoveEnumMemberValueTests.cs index 52a7855a3f..e14e5e06e9 100644 --- a/src/Tests/Refactorings.Tests/RR0199RemoveEnumMemberValueTests.cs +++ b/src/Tests/Refactorings.Tests/RR0199RemoveEnumMemberValueTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0206UseEnumeratorExplicitlyTests.cs b/src/Tests/Refactorings.Tests/RR0206UseEnumeratorExplicitlyTests.cs index 48dffe73fd..e05a90ed71 100644 --- a/src/Tests/Refactorings.Tests/RR0206UseEnumeratorExplicitlyTests.cs +++ b/src/Tests/Refactorings.Tests/RR0206UseEnumeratorExplicitlyTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0207SortCaseLabelsTests.cs b/src/Tests/Refactorings.Tests/RR0207SortCaseLabelsTests.cs index e771adff0c..9581edf70f 100644 --- a/src/Tests/Refactorings.Tests/RR0207SortCaseLabelsTests.cs +++ b/src/Tests/Refactorings.Tests/RR0207SortCaseLabelsTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0208AddTagToDocumentationCommentTests.cs b/src/Tests/Refactorings.Tests/RR0208AddTagToDocumentationCommentTests.cs index 8c3bbb2eee..7d0fd5e3ae 100644 --- a/src/Tests/Refactorings.Tests/RR0208AddTagToDocumentationCommentTests.cs +++ b/src/Tests/Refactorings.Tests/RR0208AddTagToDocumentationCommentTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0209RemoveAsyncAwaitTests.cs b/src/Tests/Refactorings.Tests/RR0209RemoveAsyncAwaitTests.cs index 117da77f72..4318e62e48 100644 --- a/src/Tests/Refactorings.Tests/RR0209RemoveAsyncAwaitTests.cs +++ b/src/Tests/Refactorings.Tests/RR0209RemoveAsyncAwaitTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0210ImplementCustomEnumeratorTests.cs b/src/Tests/Refactorings.Tests/RR0210ImplementCustomEnumeratorTests.cs index 2740338a81..4dfd6c6f4f 100644 --- a/src/Tests/Refactorings.Tests/RR0210ImplementCustomEnumeratorTests.cs +++ b/src/Tests/Refactorings.Tests/RR0210ImplementCustomEnumeratorTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0211ConvertStatementsToIfElseTests.cs b/src/Tests/Refactorings.Tests/RR0211ConvertStatementsToIfElseTests.cs index 21aaf22113..7ab342cdf2 100644 --- a/src/Tests/Refactorings.Tests/RR0211ConvertStatementsToIfElseTests.cs +++ b/src/Tests/Refactorings.Tests/RR0211ConvertStatementsToIfElseTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0212CopySwitchSectionTests.cs b/src/Tests/Refactorings.Tests/RR0212CopySwitchSectionTests.cs index 24996debfb..f5280c8e91 100644 --- a/src/Tests/Refactorings.Tests/RR0212CopySwitchSectionTests.cs +++ b/src/Tests/Refactorings.Tests/RR0212CopySwitchSectionTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0213AddParameterToInterfaceMemberTests.cs b/src/Tests/Refactorings.Tests/RR0213AddParameterToInterfaceMemberTests.cs index 3e5e31a12a..015dcf47ca 100644 --- a/src/Tests/Refactorings.Tests/RR0213AddParameterToInterfaceMemberTests.cs +++ b/src/Tests/Refactorings.Tests/RR0213AddParameterToInterfaceMemberTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0214ConvertSwitchExpressionToSwitchStatementTests.cs b/src/Tests/Refactorings.Tests/RR0214ConvertSwitchExpressionToSwitchStatementTests.cs index 0065baa263..28e96daa08 100644 --- a/src/Tests/Refactorings.Tests/RR0214ConvertSwitchExpressionToSwitchStatementTests.cs +++ b/src/Tests/Refactorings.Tests/RR0214ConvertSwitchExpressionToSwitchStatementTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0215ExpandPositionalConstructorTests.cs b/src/Tests/Refactorings.Tests/RR0215ExpandPositionalConstructorTests.cs index 042d7178b2..8f3e81e82e 100644 --- a/src/Tests/Refactorings.Tests/RR0215ExpandPositionalConstructorTests.cs +++ b/src/Tests/Refactorings.Tests/RR0215ExpandPositionalConstructorTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0216AddAllPropertiesToInitializerTests.cs b/src/Tests/Refactorings.Tests/RR0216AddAllPropertiesToInitializerTests.cs index d1582f2156..462cda0e80 100644 --- a/src/Tests/Refactorings.Tests/RR0216AddAllPropertiesToInitializerTests.cs +++ b/src/Tests/Refactorings.Tests/RR0216AddAllPropertiesToInitializerTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/RR0217DeconstructForeachVariableTests.cs b/src/Tests/Refactorings.Tests/RR0217DeconstructForeachVariableTests.cs index 7d2f388671..02bad9fecb 100644 --- a/src/Tests/Refactorings.Tests/RR0217DeconstructForeachVariableTests.cs +++ b/src/Tests/Refactorings.Tests/RR0217DeconstructForeachVariableTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Roslynator.Testing.CSharp; diff --git a/src/Tests/Refactorings.Tests/_RRTests.cs b/src/Tests/Refactorings.Tests/_RRTests.cs index 0fdccd282c..5e66c23bbf 100644 --- a/src/Tests/Refactorings.Tests/_RRTests.cs +++ b/src/Tests/Refactorings.Tests/_RRTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis.CodeRefactorings; diff --git a/src/Tests/TestConsole/Program.cs b/src/Tests/TestConsole/Program.cs index 8fb969cd24..81fc4f0c8e 100644 --- a/src/Tests/TestConsole/Program.cs +++ b/src/Tests/TestConsole/Program.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #region usings using System; diff --git a/src/Tests/TestLibrary/Foo.cs b/src/Tests/TestLibrary/Foo.cs index 3f3ed93503..72e45a3276 100644 --- a/src/Tests/TestLibrary/Foo.cs +++ b/src/Tests/TestLibrary/Foo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. #region usings using System; diff --git a/src/Tests/Testing.CSharp.MSTest/Testing/CSharp/MSTest/MSTestAssert.cs b/src/Tests/Testing.CSharp.MSTest/Testing/CSharp/MSTest/MSTestAssert.cs index 46c5ceee25..2a25467156 100644 --- a/src/Tests/Testing.CSharp.MSTest/Testing/CSharp/MSTest/MSTestAssert.cs +++ b/src/Tests/Testing.CSharp.MSTest/Testing/CSharp/MSTest/MSTestAssert.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Testing.CSharp.MSTest; diff --git a/src/Tests/Testing.CSharp.MSTest/Testing/CSharp/MSTest/MSTestCompilerDiagnosticFixVerifier.cs b/src/Tests/Testing.CSharp.MSTest/Testing/CSharp/MSTest/MSTestCompilerDiagnosticFixVerifier.cs index 9a62ec8925..5a3ef1937b 100644 --- a/src/Tests/Testing.CSharp.MSTest/Testing/CSharp/MSTest/MSTestCompilerDiagnosticFixVerifier.cs +++ b/src/Tests/Testing.CSharp.MSTest/Testing/CSharp/MSTest/MSTestCompilerDiagnosticFixVerifier.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CodeFixes; diff --git a/src/Tests/Testing.CSharp.MSTest/Testing/CSharp/MSTest/MSTestDiagnosticVerifier.cs b/src/Tests/Testing.CSharp.MSTest/Testing/CSharp/MSTest/MSTestDiagnosticVerifier.cs index 2b458b80ce..316f0abb2c 100644 --- a/src/Tests/Testing.CSharp.MSTest/Testing/CSharp/MSTest/MSTestDiagnosticVerifier.cs +++ b/src/Tests/Testing.CSharp.MSTest/Testing/CSharp/MSTest/MSTestDiagnosticVerifier.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CodeFixes; using Microsoft.CodeAnalysis.Diagnostics; diff --git a/src/Tests/Testing.CSharp.MSTest/Testing/CSharp/MSTest/MSTestRefactoringVerifier.cs b/src/Tests/Testing.CSharp.MSTest/Testing/CSharp/MSTest/MSTestRefactoringVerifier.cs index c8c7bdcebf..e57d48ca85 100644 --- a/src/Tests/Testing.CSharp.MSTest/Testing/CSharp/MSTest/MSTestRefactoringVerifier.cs +++ b/src/Tests/Testing.CSharp.MSTest/Testing/CSharp/MSTest/MSTestRefactoringVerifier.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CodeRefactorings; diff --git a/src/Tests/Testing.CSharp.Xunit/Testing/CSharp/Xunit/XunitAssert.cs b/src/Tests/Testing.CSharp.Xunit/Testing/CSharp/Xunit/XunitAssert.cs index 688077b0da..0496bb8c8e 100644 --- a/src/Tests/Testing.CSharp.Xunit/Testing/CSharp/Xunit/XunitAssert.cs +++ b/src/Tests/Testing.CSharp.Xunit/Testing/CSharp/Xunit/XunitAssert.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Testing.CSharp.Xunit; diff --git a/src/Tests/Testing.CSharp.Xunit/Testing/CSharp/Xunit/XunitCompilerDiagnosticFixVerifier.cs b/src/Tests/Testing.CSharp.Xunit/Testing/CSharp/Xunit/XunitCompilerDiagnosticFixVerifier.cs index f8b15e8a8f..ad5398f544 100644 --- a/src/Tests/Testing.CSharp.Xunit/Testing/CSharp/Xunit/XunitCompilerDiagnosticFixVerifier.cs +++ b/src/Tests/Testing.CSharp.Xunit/Testing/CSharp/Xunit/XunitCompilerDiagnosticFixVerifier.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CodeFixes; diff --git a/src/Tests/Testing.CSharp.Xunit/Testing/CSharp/Xunit/XunitDiagnosticVerifier.cs b/src/Tests/Testing.CSharp.Xunit/Testing/CSharp/Xunit/XunitDiagnosticVerifier.cs index 5261cb8f11..7bbb655dbc 100644 --- a/src/Tests/Testing.CSharp.Xunit/Testing/CSharp/Xunit/XunitDiagnosticVerifier.cs +++ b/src/Tests/Testing.CSharp.Xunit/Testing/CSharp/Xunit/XunitDiagnosticVerifier.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CodeFixes; using Microsoft.CodeAnalysis.Diagnostics; diff --git a/src/Tests/Testing.CSharp.Xunit/Testing/CSharp/Xunit/XunitRefactoringVerifier.cs b/src/Tests/Testing.CSharp.Xunit/Testing/CSharp/Xunit/XunitRefactoringVerifier.cs index 1d4393178b..a3f68d6413 100644 --- a/src/Tests/Testing.CSharp.Xunit/Testing/CSharp/Xunit/XunitRefactoringVerifier.cs +++ b/src/Tests/Testing.CSharp.Xunit/Testing/CSharp/Xunit/XunitRefactoringVerifier.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CodeRefactorings; diff --git a/src/Tests/Testing.CSharp/Extensions/CSharpTestExtensions.cs b/src/Tests/Testing.CSharp/Extensions/CSharpTestExtensions.cs index 5ecbf91748..b541284242 100644 --- a/src/Tests/Testing.CSharp/Extensions/CSharpTestExtensions.cs +++ b/src/Tests/Testing.CSharp/Extensions/CSharpTestExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Roslynator.Testing.CSharp; diff --git a/src/Tests/Testing.CSharp/Testing/CSharp/CSharpCompilerDiagnosticFixVerifier.cs b/src/Tests/Testing.CSharp/Testing/CSharp/CSharpCompilerDiagnosticFixVerifier.cs index 720334643a..8798bed1de 100644 --- a/src/Tests/Testing.CSharp/Testing/CSharp/CSharpCompilerDiagnosticFixVerifier.cs +++ b/src/Tests/Testing.CSharp/Testing/CSharp/CSharpCompilerDiagnosticFixVerifier.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CodeFixes; diff --git a/src/Tests/Testing.CSharp/Testing/CSharp/CSharpDiagnosticVerifier.cs b/src/Tests/Testing.CSharp/Testing/CSharp/CSharpDiagnosticVerifier.cs index 4f6dc9fe9d..4e123513a5 100644 --- a/src/Tests/Testing.CSharp/Testing/CSharp/CSharpDiagnosticVerifier.cs +++ b/src/Tests/Testing.CSharp/Testing/CSharp/CSharpDiagnosticVerifier.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CodeFixes; using Microsoft.CodeAnalysis.Diagnostics; diff --git a/src/Tests/Testing.CSharp/Testing/CSharp/CSharpRefactoringVerifier.cs b/src/Tests/Testing.CSharp/Testing/CSharp/CSharpRefactoringVerifier.cs index 8b9d5ea4b9..6de484d0f9 100644 --- a/src/Tests/Testing.CSharp/Testing/CSharp/CSharpRefactoringVerifier.cs +++ b/src/Tests/Testing.CSharp/Testing/CSharp/CSharpRefactoringVerifier.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CodeRefactorings; diff --git a/src/Tests/Testing.CSharp/Testing/CSharp/CSharpTestOptions.cs b/src/Tests/Testing.CSharp/Testing/CSharp/CSharpTestOptions.cs index e279936dc4..81aca55a73 100644 --- a/src/Tests/Testing.CSharp/Testing/CSharp/CSharpTestOptions.cs +++ b/src/Tests/Testing.CSharp/Testing/CSharp/CSharpTestOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests/Testing.Common/Extensions/CompilationExtensions.cs b/src/Tests/Testing.Common/Extensions/CompilationExtensions.cs index e68ade919f..599b04e839 100644 --- a/src/Tests/Testing.Common/Extensions/CompilationExtensions.cs +++ b/src/Tests/Testing.Common/Extensions/CompilationExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Tests/Testing.Common/Extensions/TestExtensions.cs b/src/Tests/Testing.Common/Extensions/TestExtensions.cs index 17caf14b80..ec70cea5b5 100644 --- a/src/Tests/Testing.Common/Extensions/TestExtensions.cs +++ b/src/Tests/Testing.Common/Extensions/TestExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Tests/Testing.Common/RuntimeMetadataReference.cs b/src/Tests/Testing.Common/RuntimeMetadataReference.cs index 57b026d990..1b2f6513cd 100644 --- a/src/Tests/Testing.Common/RuntimeMetadataReference.cs +++ b/src/Tests/Testing.Common/RuntimeMetadataReference.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Tests/Testing.Common/Testing/AdditionalFile.cs b/src/Tests/Testing.Common/Testing/AdditionalFile.cs index 8994b293c1..4f5b278472 100644 --- a/src/Tests/Testing.Common/Testing/AdditionalFile.cs +++ b/src/Tests/Testing.Common/Testing/AdditionalFile.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests/Testing.Common/Testing/CodeVerifier.cs b/src/Tests/Testing.Common/Testing/CodeVerifier.cs index 0c7c5fcb86..7130442ab6 100644 --- a/src/Tests/Testing.Common/Testing/CodeVerifier.cs +++ b/src/Tests/Testing.Common/Testing/CodeVerifier.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests/Testing.Common/Testing/CompilerDiagnosticFixTestData.cs b/src/Tests/Testing.Common/Testing/CompilerDiagnosticFixTestData.cs index 5ccf25cb02..b4b4269f09 100644 --- a/src/Tests/Testing.Common/Testing/CompilerDiagnosticFixTestData.cs +++ b/src/Tests/Testing.Common/Testing/CompilerDiagnosticFixTestData.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests/Testing.Common/Testing/CompilerDiagnosticFixVerifier.cs b/src/Tests/Testing.Common/Testing/CompilerDiagnosticFixVerifier.cs index 47d2ec1a14..cefadef0f4 100644 --- a/src/Tests/Testing.Common/Testing/CompilerDiagnosticFixVerifier.cs +++ b/src/Tests/Testing.Common/Testing/CompilerDiagnosticFixVerifier.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests/Testing.Common/Testing/DiagnosticTestData.cs b/src/Tests/Testing.Common/Testing/DiagnosticTestData.cs index ace4c474a1..2d70370f5c 100644 --- a/src/Tests/Testing.Common/Testing/DiagnosticTestData.cs +++ b/src/Tests/Testing.Common/Testing/DiagnosticTestData.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests/Testing.Common/Testing/DiagnosticVerifier.cs b/src/Tests/Testing.Common/Testing/DiagnosticVerifier.cs index 77674f869d..f082723aed 100644 --- a/src/Tests/Testing.Common/Testing/DiagnosticVerifier.cs +++ b/src/Tests/Testing.Common/Testing/DiagnosticVerifier.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests/Testing.Common/Testing/ExpectedDocument.cs b/src/Tests/Testing.Common/Testing/ExpectedDocument.cs index 73f7f59644..e60657a0c1 100644 --- a/src/Tests/Testing.Common/Testing/ExpectedDocument.cs +++ b/src/Tests/Testing.Common/Testing/ExpectedDocument.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Testing.Common/Testing/ExpectedTestState.cs b/src/Tests/Testing.Common/Testing/ExpectedTestState.cs index 98db2e0650..45ab581ac9 100644 --- a/src/Tests/Testing.Common/Testing/ExpectedTestState.cs +++ b/src/Tests/Testing.Common/Testing/ExpectedTestState.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests/Testing.Common/Testing/IAssert.cs b/src/Tests/Testing.Common/Testing/IAssert.cs index 0087604f12..b9225ccfca 100644 --- a/src/Tests/Testing.Common/Testing/IAssert.cs +++ b/src/Tests/Testing.Common/Testing/IAssert.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Testing; diff --git a/src/Tests/Testing.Common/Testing/RefactoringTestData.cs b/src/Tests/Testing.Common/Testing/RefactoringTestData.cs index 20e622afc4..5001fbbbea 100644 --- a/src/Tests/Testing.Common/Testing/RefactoringTestData.cs +++ b/src/Tests/Testing.Common/Testing/RefactoringTestData.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests/Testing.Common/Testing/RefactoringVerifier.cs b/src/Tests/Testing.Common/Testing/RefactoringVerifier.cs index 266857f237..94855ec8d1 100644 --- a/src/Tests/Testing.Common/Testing/RefactoringVerifier.cs +++ b/src/Tests/Testing.Common/Testing/RefactoringVerifier.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests/Testing.Common/Testing/TestCode.cs b/src/Tests/Testing.Common/Testing/TestCode.cs index 3d91f7b1e2..9215050415 100644 --- a/src/Tests/Testing.Common/Testing/TestCode.cs +++ b/src/Tests/Testing.Common/Testing/TestCode.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Tests/Testing.Common/Testing/TestOptions.cs b/src/Tests/Testing.Common/Testing/TestOptions.cs index aa2aca5dc7..a6bdbc4c8c 100644 --- a/src/Tests/Testing.Common/Testing/TestOptions.cs +++ b/src/Tests/Testing.Common/Testing/TestOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Tests/Testing.Common/Testing/Text/LinePositionInfo.cs b/src/Tests/Testing.Common/Testing/Text/LinePositionInfo.cs index f2055d4daa..5b59a82e44 100644 --- a/src/Tests/Testing.Common/Testing/Text/LinePositionInfo.cs +++ b/src/Tests/Testing.Common/Testing/Text/LinePositionInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.CodeAnalysis.Text; diff --git a/src/Tests/Testing.Common/Testing/Text/LinePositionSpanInfo.cs b/src/Tests/Testing.Common/Testing/Text/LinePositionSpanInfo.cs index ecd1cb2ec5..66334dff9e 100644 --- a/src/Tests/Testing.Common/Testing/Text/LinePositionSpanInfo.cs +++ b/src/Tests/Testing.Common/Testing/Text/LinePositionSpanInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.CodeAnalysis.Text; diff --git a/src/Tests/Testing.Common/Testing/Text/LinePositionSpanInfoComparer.cs b/src/Tests/Testing.Common/Testing/Text/LinePositionSpanInfoComparer.cs index b1d50f24c7..f98e8abf96 100644 --- a/src/Tests/Testing.Common/Testing/Text/LinePositionSpanInfoComparer.cs +++ b/src/Tests/Testing.Common/Testing/Text/LinePositionSpanInfoComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/Tests/Testing.Common/Testing/Text/TextProcessor.cs b/src/Tests/Testing.Common/Testing/Text/TextProcessor.cs index a9a87e0b77..ffc2815d66 100644 --- a/src/Tests/Testing.Common/Testing/Text/TextProcessor.cs +++ b/src/Tests/Testing.Common/Testing/Text/TextProcessor.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests/Testing.Common/Traits.cs b/src/Tests/Testing.Common/Traits.cs index 8a000bce03..b7e3f4fcb5 100644 --- a/src/Tests/Testing.Common/Traits.cs +++ b/src/Tests/Testing.Common/Traits.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator; diff --git a/src/Tests/Testing.VisualBasic/VisualBasic/Testing/VisualBasicCompilerDiagnosticFixVerifier.cs b/src/Tests/Testing.VisualBasic/VisualBasic/Testing/VisualBasicCompilerDiagnosticFixVerifier.cs index cfed97f9d4..03ef9e0dac 100644 --- a/src/Tests/Testing.VisualBasic/VisualBasic/Testing/VisualBasicCompilerDiagnosticFixVerifier.cs +++ b/src/Tests/Testing.VisualBasic/VisualBasic/Testing/VisualBasicCompilerDiagnosticFixVerifier.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CodeFixes; using Roslynator.Testing; diff --git a/src/Tests/Testing.VisualBasic/VisualBasic/Testing/VisualBasicDiagnosticVerifier.cs b/src/Tests/Testing.VisualBasic/VisualBasic/Testing/VisualBasicDiagnosticVerifier.cs index 3e59396854..83c4a3454c 100644 --- a/src/Tests/Testing.VisualBasic/VisualBasic/Testing/VisualBasicDiagnosticVerifier.cs +++ b/src/Tests/Testing.VisualBasic/VisualBasic/Testing/VisualBasicDiagnosticVerifier.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CodeFixes; using Microsoft.CodeAnalysis.Diagnostics; diff --git a/src/Tests/Testing.VisualBasic/VisualBasic/Testing/VisualBasicRefactoringVerifier.cs b/src/Tests/Testing.VisualBasic/VisualBasic/Testing/VisualBasicRefactoringVerifier.cs index 06e128594b..79cfa5a5cf 100644 --- a/src/Tests/Testing.VisualBasic/VisualBasic/Testing/VisualBasicRefactoringVerifier.cs +++ b/src/Tests/Testing.VisualBasic/VisualBasic/Testing/VisualBasicRefactoringVerifier.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CodeRefactorings; using Roslynator.Testing; diff --git a/src/Tests/Testing.VisualBasic/VisualBasic/Testing/VisualBasicTestOptions.cs b/src/Tests/Testing.VisualBasic/VisualBasic/Testing/VisualBasicTestOptions.cs index 949b1aa837..cb890275a0 100644 --- a/src/Tests/Testing.VisualBasic/VisualBasic/Testing/VisualBasicTestOptions.cs +++ b/src/Tests/Testing.VisualBasic/VisualBasic/Testing/VisualBasicTestOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tests/Tests.Common/Testing/CSharp/AbstractCSharpCompilerDiagnosticFixVerifier.cs b/src/Tests/Tests.Common/Testing/CSharp/AbstractCSharpCompilerDiagnosticFixVerifier.cs index 5d7bd87669..90074d1c8a 100644 --- a/src/Tests/Tests.Common/Testing/CSharp/AbstractCSharpCompilerDiagnosticFixVerifier.cs +++ b/src/Tests/Tests.Common/Testing/CSharp/AbstractCSharpCompilerDiagnosticFixVerifier.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Diagnostics; diff --git a/src/Tests/Tests.Common/Testing/CSharp/AbstractCSharpDiagnosticVerifier.cs b/src/Tests/Tests.Common/Testing/CSharp/AbstractCSharpDiagnosticVerifier.cs index b314ed8f12..7808ed4495 100644 --- a/src/Tests/Tests.Common/Testing/CSharp/AbstractCSharpDiagnosticVerifier.cs +++ b/src/Tests/Tests.Common/Testing/CSharp/AbstractCSharpDiagnosticVerifier.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Tests/Tests.Common/Testing/CSharp/AbstractCSharpRefactoringVerifier.cs b/src/Tests/Tests.Common/Testing/CSharp/AbstractCSharpRefactoringVerifier.cs index ac995c6e7d..2a8f816d84 100644 --- a/src/Tests/Tests.Common/Testing/CSharp/AbstractCSharpRefactoringVerifier.cs +++ b/src/Tests/Tests.Common/Testing/CSharp/AbstractCSharpRefactoringVerifier.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Tests/Tests.Common/Testing/CSharp/DefaultCSharpTestOptions.cs b/src/Tests/Tests.Common/Testing/CSharp/DefaultCSharpTestOptions.cs index 542a3390ce..041f4f5041 100644 --- a/src/Tests/Tests.Common/Testing/CSharp/DefaultCSharpTestOptions.cs +++ b/src/Tests/Tests.Common/Testing/CSharp/DefaultCSharpTestOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Tests/Tests.Common/Testing/CSharp/WellKnownCSharpTestOptions.cs b/src/Tests/Tests.Common/Testing/CSharp/WellKnownCSharpTestOptions.cs index 570663548b..86ac09b976 100644 --- a/src/Tests/Tests.Common/Testing/CSharp/WellKnownCSharpTestOptions.cs +++ b/src/Tests/Tests.Common/Testing/CSharp/WellKnownCSharpTestOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using Microsoft.CodeAnalysis; diff --git a/src/Tests/Tests.Common/Testing/DummyCodeFixProvider.cs b/src/Tests/Tests.Common/Testing/DummyCodeFixProvider.cs index 79087e3950..3dfbb15497 100644 --- a/src/Tests/Tests.Common/Testing/DummyCodeFixProvider.cs +++ b/src/Tests/Tests.Common/Testing/DummyCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Tools/AddCodeFileHeader/Program.cs b/src/Tools/AddCodeFileHeader/Program.cs index e1893da422..36ea7f2981 100644 --- a/src/Tools/AddCodeFileHeader/Program.cs +++ b/src/Tools/AddCodeFileHeader/Program.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tools/Cleaner/Program.cs b/src/Tools/Cleaner/Program.cs index 201721cef5..065cd6cf82 100644 --- a/src/Tools/Cleaner/Program.cs +++ b/src/Tools/Cleaner/Program.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tools/CodeGeneration/CSharp/AnalyzerTestGenerator.cs b/src/Tools/CodeGeneration/CSharp/AnalyzerTestGenerator.cs index 23d6d96d49..134dff4acb 100644 --- a/src/Tools/CodeGeneration/CSharp/AnalyzerTestGenerator.cs +++ b/src/Tools/CodeGeneration/CSharp/AnalyzerTestGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; using Roslynator.Metadata; diff --git a/src/Tools/CodeGeneration/CSharp/CSharpSyntaxNodeWalkerGenerator.cs b/src/Tools/CodeGeneration/CSharp/CSharpSyntaxNodeWalkerGenerator.cs index c5b4bb1150..59e8024099 100644 --- a/src/Tools/CodeGeneration/CSharp/CSharpSyntaxNodeWalkerGenerator.cs +++ b/src/Tools/CodeGeneration/CSharp/CSharpSyntaxNodeWalkerGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp.Syntax; diff --git a/src/Tools/CodeGeneration/CSharp/CodeFixDescriptorsGenerator.cs b/src/Tools/CodeGeneration/CSharp/CodeFixDescriptorsGenerator.cs index 0be0f86697..85a1d4b56c 100644 --- a/src/Tools/CodeGeneration/CSharp/CodeFixDescriptorsGenerator.cs +++ b/src/Tools/CodeGeneration/CSharp/CodeFixDescriptorsGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Tools/CodeGeneration/CSharp/CodeFixIdentifiersGenerator.cs b/src/Tools/CodeGeneration/CSharp/CodeFixIdentifiersGenerator.cs index c811ce6b1b..0ef13ae1f6 100644 --- a/src/Tools/CodeGeneration/CSharp/CodeFixIdentifiersGenerator.cs +++ b/src/Tools/CodeGeneration/CSharp/CodeFixIdentifiersGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Tools/CodeGeneration/CSharp/CodeFixTestGenerator.cs b/src/Tools/CodeGeneration/CSharp/CodeFixTestGenerator.cs index d558be1aec..03e7b9f7d0 100644 --- a/src/Tools/CodeGeneration/CSharp/CodeFixTestGenerator.cs +++ b/src/Tools/CodeGeneration/CSharp/CodeFixTestGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; using Roslynator.Metadata; diff --git a/src/Tools/CodeGeneration/CSharp/CodeFixesOptionsPageGenerator.cs b/src/Tools/CodeGeneration/CSharp/CodeFixesOptionsPageGenerator.cs index 6075aeeda6..54495f7c76 100644 --- a/src/Tools/CodeGeneration/CSharp/CodeFixesOptionsPageGenerator.cs +++ b/src/Tools/CodeGeneration/CSharp/CodeFixesOptionsPageGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; using Roslynator.CSharp; diff --git a/src/Tools/CodeGeneration/CSharp/CodeGenerator.cs b/src/Tools/CodeGeneration/CSharp/CodeGenerator.cs index 15c9de17ad..ccc6ceb7f5 100644 --- a/src/Tools/CodeGeneration/CSharp/CodeGenerator.cs +++ b/src/Tools/CodeGeneration/CSharp/CodeGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Diagnostics; diff --git a/src/Tools/CodeGeneration/CSharp/CompilerDiagnosticIdentifiersGenerator.cs b/src/Tools/CodeGeneration/CSharp/CompilerDiagnosticIdentifiersGenerator.cs index 5ecfc29810..4580e5ecf2 100644 --- a/src/Tools/CodeGeneration/CSharp/CompilerDiagnosticIdentifiersGenerator.cs +++ b/src/Tools/CodeGeneration/CSharp/CompilerDiagnosticIdentifiersGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Tools/CodeGeneration/CSharp/CompilerDiagnosticRulesGenerator.cs b/src/Tools/CodeGeneration/CSharp/CompilerDiagnosticRulesGenerator.cs index 3c958f0486..f71a9ab969 100644 --- a/src/Tools/CodeGeneration/CSharp/CompilerDiagnosticRulesGenerator.cs +++ b/src/Tools/CodeGeneration/CSharp/CompilerDiagnosticRulesGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Tools/CodeGeneration/CSharp/DiagnosticIdentifiersGenerator.cs b/src/Tools/CodeGeneration/CSharp/DiagnosticIdentifiersGenerator.cs index de57e78e45..496dd53e61 100644 --- a/src/Tools/CodeGeneration/CSharp/DiagnosticIdentifiersGenerator.cs +++ b/src/Tools/CodeGeneration/CSharp/DiagnosticIdentifiersGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tools/CodeGeneration/CSharp/DiagnosticRulesGenerator.cs b/src/Tools/CodeGeneration/CSharp/DiagnosticRulesGenerator.cs index 029f45f934..d617f0bea6 100644 --- a/src/Tools/CodeGeneration/CSharp/DiagnosticRulesGenerator.cs +++ b/src/Tools/CodeGeneration/CSharp/DiagnosticRulesGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Tools/CodeGeneration/CSharp/DiagnosticRulesGenerators.cs b/src/Tools/CodeGeneration/CSharp/DiagnosticRulesGenerators.cs index 9f7928200b..728a322f96 100644 --- a/src/Tools/CodeGeneration/CSharp/DiagnosticRulesGenerators.cs +++ b/src/Tools/CodeGeneration/CSharp/DiagnosticRulesGenerators.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CodeGeneration.CSharp; diff --git a/src/Tools/CodeGeneration/CSharp/Extensions.cs b/src/Tools/CodeGeneration/CSharp/Extensions.cs index 99d3f01b6b..6d417f0a5c 100644 --- a/src/Tools/CodeGeneration/CSharp/Extensions.cs +++ b/src/Tools/CodeGeneration/CSharp/Extensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; using static Microsoft.CodeAnalysis.CSharp.SyntaxFactory; diff --git a/src/Tools/CodeGeneration/CSharp/IdentifierNameWalkerGenerator.cs b/src/Tools/CodeGeneration/CSharp/IdentifierNameWalkerGenerator.cs index d9a838d604..6aab0ef7c5 100644 --- a/src/Tools/CodeGeneration/CSharp/IdentifierNameWalkerGenerator.cs +++ b/src/Tools/CodeGeneration/CSharp/IdentifierNameWalkerGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Tools/CodeGeneration/CSharp/PropertySymbolComparerGenerator.cs b/src/Tools/CodeGeneration/CSharp/PropertySymbolComparerGenerator.cs index 94c047fa15..07c95689a6 100644 --- a/src/Tools/CodeGeneration/CSharp/PropertySymbolComparerGenerator.cs +++ b/src/Tools/CodeGeneration/CSharp/PropertySymbolComparerGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using Microsoft.CodeAnalysis; diff --git a/src/Tools/CodeGeneration/CSharp/RefactoringDescriptorsGenerator.cs b/src/Tools/CodeGeneration/CSharp/RefactoringDescriptorsGenerator.cs index 0c9f06b884..43df01ce5b 100644 --- a/src/Tools/CodeGeneration/CSharp/RefactoringDescriptorsGenerator.cs +++ b/src/Tools/CodeGeneration/CSharp/RefactoringDescriptorsGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Tools/CodeGeneration/CSharp/RefactoringIdentifiersGenerator.cs b/src/Tools/CodeGeneration/CSharp/RefactoringIdentifiersGenerator.cs index fb50062dfa..05d4532d93 100644 --- a/src/Tools/CodeGeneration/CSharp/RefactoringIdentifiersGenerator.cs +++ b/src/Tools/CodeGeneration/CSharp/RefactoringIdentifiersGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Tools/CodeGeneration/CSharp/RefactoringTestGenerator.cs b/src/Tools/CodeGeneration/CSharp/RefactoringTestGenerator.cs index 88c1e076fe..da8e116b1d 100644 --- a/src/Tools/CodeGeneration/CSharp/RefactoringTestGenerator.cs +++ b/src/Tools/CodeGeneration/CSharp/RefactoringTestGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis.CSharp.Syntax; using Roslynator.Metadata; diff --git a/src/Tools/CodeGeneration/CSharp/RefactoringsOptionsPageGenerator.cs b/src/Tools/CodeGeneration/CSharp/RefactoringsOptionsPageGenerator.cs index 20953e685f..5bff3a3b67 100644 --- a/src/Tools/CodeGeneration/CSharp/RefactoringsOptionsPageGenerator.cs +++ b/src/Tools/CodeGeneration/CSharp/RefactoringsOptionsPageGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Tools/CodeGeneration/CSharp/RuleSetGenerator.cs b/src/Tools/CodeGeneration/CSharp/RuleSetGenerator.cs index 0dc175f7c5..f03ba3ebf1 100644 --- a/src/Tools/CodeGeneration/CSharp/RuleSetGenerator.cs +++ b/src/Tools/CodeGeneration/CSharp/RuleSetGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/Tools/CodeGeneration/CSharp/RuntimeMetadataReference.cs b/src/Tools/CodeGeneration/CSharp/RuntimeMetadataReference.cs index 856341e4b8..589ce81c79 100644 --- a/src/Tools/CodeGeneration/CSharp/RuntimeMetadataReference.cs +++ b/src/Tools/CodeGeneration/CSharp/RuntimeMetadataReference.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Tools/CodeGeneration/CSharp/ShouldVisitPropertyGenerator.cs b/src/Tools/CodeGeneration/CSharp/ShouldVisitPropertyGenerator.cs index c001465669..40a3b3215b 100644 --- a/src/Tools/CodeGeneration/CSharp/ShouldVisitPropertyGenerator.cs +++ b/src/Tools/CodeGeneration/CSharp/ShouldVisitPropertyGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Diagnostics; diff --git a/src/Tools/CodeGeneration/CSharp/Symbols.Generated.cs b/src/Tools/CodeGeneration/CSharp/Symbols.Generated.cs index 8784e8e618..5de5318ecc 100644 --- a/src/Tools/CodeGeneration/CSharp/Symbols.Generated.cs +++ b/src/Tools/CodeGeneration/CSharp/Symbols.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/Tools/CodeGeneration/CSharp/Symbols.cs b/src/Tools/CodeGeneration/CSharp/Symbols.cs index 81fdac3239..b8e430ea1f 100644 --- a/src/Tools/CodeGeneration/CSharp/Symbols.cs +++ b/src/Tools/CodeGeneration/CSharp/Symbols.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tools/CodeGeneration/CSharp/SymbolsGetKindsGenerator.cs b/src/Tools/CodeGeneration/CSharp/SymbolsGetKindsGenerator.cs index 8f732ccde8..ee79a491c6 100644 --- a/src/Tools/CodeGeneration/CSharp/SymbolsGetKindsGenerator.cs +++ b/src/Tools/CodeGeneration/CSharp/SymbolsGetKindsGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tools/CodeGeneration/CSharp/SyntaxWalker/CSharpFactory2.cs b/src/Tools/CodeGeneration/CSharp/SyntaxWalker/CSharpFactory2.cs index 986dcee519..54f602da91 100644 --- a/src/Tools/CodeGeneration/CSharp/SyntaxWalker/CSharpFactory2.cs +++ b/src/Tools/CodeGeneration/CSharp/SyntaxWalker/CSharpFactory2.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; diff --git a/src/Tools/CodeGeneration/CSharp/SyntaxWalker/CSharpSyntaxWalkerGenerator.Generated.cs b/src/Tools/CodeGeneration/CSharp/SyntaxWalker/CSharpSyntaxWalkerGenerator.Generated.cs index 7b65c2bd69..f68f65c0da 100644 --- a/src/Tools/CodeGeneration/CSharp/SyntaxWalker/CSharpSyntaxWalkerGenerator.Generated.cs +++ b/src/Tools/CodeGeneration/CSharp/SyntaxWalker/CSharpSyntaxWalkerGenerator.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/Tools/CodeGeneration/CSharp/SyntaxWalker/CSharpSyntaxWalkerGenerator.cs b/src/Tools/CodeGeneration/CSharp/SyntaxWalker/CSharpSyntaxWalkerGenerator.cs index 9a5b96d40b..8b9a6948ed 100644 --- a/src/Tools/CodeGeneration/CSharp/SyntaxWalker/CSharpSyntaxWalkerGenerator.cs +++ b/src/Tools/CodeGeneration/CSharp/SyntaxWalker/CSharpSyntaxWalkerGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tools/CodeGeneration/CSharp/SyntaxWalker/MethodGenerationContext.cs b/src/Tools/CodeGeneration/CSharp/SyntaxWalker/MethodGenerationContext.cs index a58f0bb386..1db815e551 100644 --- a/src/Tools/CodeGeneration/CSharp/SyntaxWalker/MethodGenerationContext.cs +++ b/src/Tools/CodeGeneration/CSharp/SyntaxWalker/MethodGenerationContext.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Tools/CodeGeneration/CSharp/WrapRewriter.cs b/src/Tools/CodeGeneration/CSharp/WrapRewriter.cs index 7d0625d14b..228e513081 100644 --- a/src/Tools/CodeGeneration/CSharp/WrapRewriter.cs +++ b/src/Tools/CodeGeneration/CSharp/WrapRewriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Tools/CodeGeneration/CSharp/WrapRewriterOptions.cs b/src/Tools/CodeGeneration/CSharp/WrapRewriterOptions.cs index 3366a34b11..dcc84465d9 100644 --- a/src/Tools/CodeGeneration/CSharp/WrapRewriterOptions.cs +++ b/src/Tools/CodeGeneration/CSharp/WrapRewriterOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Tools/CodeGeneration/CodeGenerationExtensions.cs b/src/Tools/CodeGeneration/CodeGenerationExtensions.cs index b011a9010a..c0d09c8b0c 100644 --- a/src/Tools/CodeGeneration/CodeGenerationExtensions.cs +++ b/src/Tools/CodeGeneration/CodeGenerationExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Roslynator.Configuration; diff --git a/src/Tools/CodeGeneration/CodeGenerationHelpers.cs b/src/Tools/CodeGeneration/CodeGenerationHelpers.cs index a42c1da955..0860b437ea 100644 --- a/src/Tools/CodeGeneration/CodeGenerationHelpers.cs +++ b/src/Tools/CodeGeneration/CodeGenerationHelpers.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.IO; diff --git a/src/Tools/CodeGeneration/EditorConfig/EditorConfigGenerator.cs b/src/Tools/CodeGeneration/EditorConfig/EditorConfigGenerator.cs index b3672e699c..958052bff4 100644 --- a/src/Tools/CodeGeneration/EditorConfig/EditorConfigGenerator.cs +++ b/src/Tools/CodeGeneration/EditorConfig/EditorConfigGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tools/CodeGeneration/Html/HtmlGenerator.cs b/src/Tools/CodeGeneration/Html/HtmlGenerator.cs index cf8cc16995..ac5636ec32 100644 --- a/src/Tools/CodeGeneration/Html/HtmlGenerator.cs +++ b/src/Tools/CodeGeneration/Html/HtmlGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tools/CodeGeneration/Markdown/AnalyzersMapping.cs b/src/Tools/CodeGeneration/Markdown/AnalyzersMapping.cs index 86eb30ef66..4f0e1c4791 100644 --- a/src/Tools/CodeGeneration/Markdown/AnalyzersMapping.cs +++ b/src/Tools/CodeGeneration/Markdown/AnalyzersMapping.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.IO; diff --git a/src/Tools/CodeGeneration/Markdown/MarkdownGenerator.cs b/src/Tools/CodeGeneration/Markdown/MarkdownGenerator.cs index 4239f1b52b..ba8ea52cd4 100644 --- a/src/Tools/CodeGeneration/Markdown/MarkdownGenerator.cs +++ b/src/Tools/CodeGeneration/Markdown/MarkdownGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tools/CodeGeneration/RoslynatorMetadata.cs b/src/Tools/CodeGeneration/RoslynatorMetadata.cs index b57bfbb880..d04cb4ae18 100644 --- a/src/Tools/CodeGeneration/RoslynatorMetadata.cs +++ b/src/Tools/CodeGeneration/RoslynatorMetadata.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Tools/CodeGenerator/Program.cs b/src/Tools/CodeGenerator/Program.cs index 0a75e59c5b..a9f9bc57cd 100644 --- a/src/Tools/CodeGenerator/Program.cs +++ b/src/Tools/CodeGenerator/Program.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tools/ConfigurationFileGenerator/Program.cs b/src/Tools/ConfigurationFileGenerator/Program.cs index d35cfaf210..b7987a57ab 100644 --- a/src/Tools/ConfigurationFileGenerator/Program.cs +++ b/src/Tools/ConfigurationFileGenerator/Program.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.IO; diff --git a/src/Tools/LogParser/AnalyzerDiagnosticInfo.cs b/src/Tools/LogParser/AnalyzerDiagnosticInfo.cs index f3e643d9ee..83f6614dfb 100644 --- a/src/Tools/LogParser/AnalyzerDiagnosticInfo.cs +++ b/src/Tools/LogParser/AnalyzerDiagnosticInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using System.Diagnostics.CodeAnalysis; diff --git a/src/Tools/LogParser/LogParser.cs b/src/Tools/LogParser/LogParser.cs index fd0770a900..2ab9897076 100644 --- a/src/Tools/LogParser/LogParser.cs +++ b/src/Tools/LogParser/LogParser.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tools/LogParser/Program.cs b/src/Tools/LogParser/Program.cs index 45eb1e3c90..9e4fa6e8da 100644 --- a/src/Tools/LogParser/Program.cs +++ b/src/Tools/LogParser/Program.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tools/LogParser/ProjectDiagnosticInfo.cs b/src/Tools/LogParser/ProjectDiagnosticInfo.cs index f759ca9900..8005307982 100644 --- a/src/Tools/LogParser/ProjectDiagnosticInfo.cs +++ b/src/Tools/LogParser/ProjectDiagnosticInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Diagnostics; diff --git a/src/Tools/Metadata/AnalyzerConfigOption.cs b/src/Tools/Metadata/AnalyzerConfigOption.cs index d3fef5e540..ec2a3d29e8 100644 --- a/src/Tools/Metadata/AnalyzerConfigOption.cs +++ b/src/Tools/Metadata/AnalyzerConfigOption.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Metadata; diff --git a/src/Tools/Metadata/AnalyzerMetadata.cs b/src/Tools/Metadata/AnalyzerMetadata.cs index 7882ea2cc4..8af32e6d7a 100644 --- a/src/Tools/Metadata/AnalyzerMetadata.cs +++ b/src/Tools/Metadata/AnalyzerMetadata.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tools/Metadata/AnalyzerOptionMetadata.cs b/src/Tools/Metadata/AnalyzerOptionMetadata.cs index d7e5455cea..bb5d583191 100644 --- a/src/Tools/Metadata/AnalyzerOptionMetadata.cs +++ b/src/Tools/Metadata/AnalyzerOptionMetadata.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; diff --git a/src/Tools/Metadata/AnalyzerOptionValueMetadata.cs b/src/Tools/Metadata/AnalyzerOptionValueMetadata.cs index ef26d8c0a8..627ce507c8 100644 --- a/src/Tools/Metadata/AnalyzerOptionValueMetadata.cs +++ b/src/Tools/Metadata/AnalyzerOptionValueMetadata.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Metadata; diff --git a/src/Tools/Metadata/AnalyzerStatus.cs b/src/Tools/Metadata/AnalyzerStatus.cs index 7eaa0e8be3..93fc2073db 100644 --- a/src/Tools/Metadata/AnalyzerStatus.cs +++ b/src/Tools/Metadata/AnalyzerStatus.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Metadata; diff --git a/src/Tools/Metadata/CodeFixMetadata.cs b/src/Tools/Metadata/CodeFixMetadata.cs index bfb76d8888..c962d87d69 100644 --- a/src/Tools/Metadata/CodeFixMetadata.cs +++ b/src/Tools/Metadata/CodeFixMetadata.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; diff --git a/src/Tools/Metadata/CodeFixOption.cs b/src/Tools/Metadata/CodeFixOption.cs index 28123d0d98..4f8b617b48 100644 --- a/src/Tools/Metadata/CodeFixOption.cs +++ b/src/Tools/Metadata/CodeFixOption.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Metadata; diff --git a/src/Tools/Metadata/CompilerDiagnosticMetadata.cs b/src/Tools/Metadata/CompilerDiagnosticMetadata.cs index c941441dce..c32d5a0567 100644 --- a/src/Tools/Metadata/CompilerDiagnosticMetadata.cs +++ b/src/Tools/Metadata/CompilerDiagnosticMetadata.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Metadata; diff --git a/src/Tools/Metadata/LegacyAnalyzerOptionKind.cs b/src/Tools/Metadata/LegacyAnalyzerOptionKind.cs index c4fde7c4b3..9a7c857a30 100644 --- a/src/Tools/Metadata/LegacyAnalyzerOptionKind.cs +++ b/src/Tools/Metadata/LegacyAnalyzerOptionKind.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Metadata; diff --git a/src/Tools/Metadata/LegacyAnalyzerOptionMetadata.cs b/src/Tools/Metadata/LegacyAnalyzerOptionMetadata.cs index 38d46b0f9b..c383c27e34 100644 --- a/src/Tools/Metadata/LegacyAnalyzerOptionMetadata.cs +++ b/src/Tools/Metadata/LegacyAnalyzerOptionMetadata.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tools/Metadata/LinkMetadata.cs b/src/Tools/Metadata/LinkMetadata.cs index 42821bc473..c1f0400c72 100644 --- a/src/Tools/Metadata/LinkMetadata.cs +++ b/src/Tools/Metadata/LinkMetadata.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Metadata; diff --git a/src/Tools/Metadata/MetadataFile.cs b/src/Tools/Metadata/MetadataFile.cs index 1081437959..1f5b3349fc 100644 --- a/src/Tools/Metadata/MetadataFile.cs +++ b/src/Tools/Metadata/MetadataFile.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tools/Metadata/RefactoringMetadata.cs b/src/Tools/Metadata/RefactoringMetadata.cs index 7c020c79ff..b9e1f239fc 100644 --- a/src/Tools/Metadata/RefactoringMetadata.cs +++ b/src/Tools/Metadata/RefactoringMetadata.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Text.RegularExpressions; diff --git a/src/Tools/Metadata/SampleMetadata.cs b/src/Tools/Metadata/SampleMetadata.cs index 1c9b645759..855fa59b34 100644 --- a/src/Tools/Metadata/SampleMetadata.cs +++ b/src/Tools/Metadata/SampleMetadata.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; diff --git a/src/Tools/Metadata/SyntaxMetadata.cs b/src/Tools/Metadata/SyntaxMetadata.cs index 86555b283e..ef59ae7bb8 100644 --- a/src/Tools/Metadata/SyntaxMetadata.cs +++ b/src/Tools/Metadata/SyntaxMetadata.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Metadata; diff --git a/src/Tools/Metadata/XmlExtensions.cs b/src/Tools/Metadata/XmlExtensions.cs index ac5dcc440e..5b94d8502c 100644 --- a/src/Tools/Metadata/XmlExtensions.cs +++ b/src/Tools/Metadata/XmlExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Xml.Linq; diff --git a/src/Tools/MetadataGenerator/Program.cs b/src/Tools/MetadataGenerator/Program.cs index 8d29797780..f81f5f5ccf 100644 --- a/src/Tools/MetadataGenerator/Program.cs +++ b/src/Tools/MetadataGenerator/Program.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tools/MetadataGenerator/RoslynatorInfo.cs b/src/Tools/MetadataGenerator/RoslynatorInfo.cs index 473f202609..1b78cbb208 100644 --- a/src/Tools/MetadataGenerator/RoslynatorInfo.cs +++ b/src/Tools/MetadataGenerator/RoslynatorInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Tools/TestCodeGenerator/Program.cs b/src/Tools/TestCodeGenerator/Program.cs index 367b577cb6..ea59e269aa 100644 --- a/src/Tools/TestCodeGenerator/Program.cs +++ b/src/Tools/TestCodeGenerator/Program.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Tools/Utilities/FileHelper.cs b/src/Tools/Utilities/FileHelper.cs index e07d21af2e..881138f19f 100644 --- a/src/Tools/Utilities/FileHelper.cs +++ b/src/Tools/Utilities/FileHelper.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.IO; diff --git a/src/Tools/Utilities/Utf8StringWriter.cs b/src/Tools/Utilities/Utf8StringWriter.cs index 74320a440f..fe0111611d 100644 --- a/src/Tools/Utilities/Utf8StringWriter.cs +++ b/src/Tools/Utilities/Utf8StringWriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.IO; using System.Text; diff --git a/src/Tools/VersionUpdater/Program.cs b/src/Tools/VersionUpdater/Program.cs index 6266eaf10a..8efd58e0e9 100644 --- a/src/Tools/VersionUpdater/Program.cs +++ b/src/Tools/VersionUpdater/Program.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.IO; diff --git a/src/VisualBasic.Workspaces/VisualBasic/CodeMetrics/VisualBasicCodeMetricsService.cs b/src/VisualBasic.Workspaces/VisualBasic/CodeMetrics/VisualBasicCodeMetricsService.cs index 5245a6ecdf..f5e2faefaa 100644 --- a/src/VisualBasic.Workspaces/VisualBasic/CodeMetrics/VisualBasicCodeMetricsService.cs +++ b/src/VisualBasic.Workspaces/VisualBasic/CodeMetrics/VisualBasicCodeMetricsService.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Composition; using System.Threading; diff --git a/src/VisualBasic.Workspaces/VisualBasic/CodeMetrics/VisualBasicLinesWalker.cs b/src/VisualBasic.Workspaces/VisualBasic/CodeMetrics/VisualBasicLinesWalker.cs index 0802984746..60fdaae1ac 100644 --- a/src/VisualBasic.Workspaces/VisualBasic/CodeMetrics/VisualBasicLinesWalker.cs +++ b/src/VisualBasic.Workspaces/VisualBasic/CodeMetrics/VisualBasicLinesWalker.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using Microsoft.CodeAnalysis; diff --git a/src/VisualBasic.Workspaces/VisualBasic/CodeMetrics/VisualBasicLogicalLinesWalker.cs b/src/VisualBasic.Workspaces/VisualBasic/CodeMetrics/VisualBasicLogicalLinesWalker.cs index aa32c33545..42b7b8fe4f 100644 --- a/src/VisualBasic.Workspaces/VisualBasic/CodeMetrics/VisualBasicLogicalLinesWalker.cs +++ b/src/VisualBasic.Workspaces/VisualBasic/CodeMetrics/VisualBasicLogicalLinesWalker.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using Microsoft.CodeAnalysis.Text; diff --git a/src/VisualBasic.Workspaces/VisualBasic/CodeMetrics/VisualBasicPhysicalLinesWalker.cs b/src/VisualBasic.Workspaces/VisualBasic/CodeMetrics/VisualBasicPhysicalLinesWalker.cs index 108b581c1b..93280b720c 100644 --- a/src/VisualBasic.Workspaces/VisualBasic/CodeMetrics/VisualBasicPhysicalLinesWalker.cs +++ b/src/VisualBasic.Workspaces/VisualBasic/CodeMetrics/VisualBasicPhysicalLinesWalker.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using Microsoft.CodeAnalysis; diff --git a/src/VisualBasic.Workspaces/VisualBasic/VisualBasicSyntaxFactsService.cs b/src/VisualBasic.Workspaces/VisualBasic/VisualBasicSyntaxFactsService.cs index 64991af7fc..9f5336892d 100644 --- a/src/VisualBasic.Workspaces/VisualBasic/VisualBasicSyntaxFactsService.cs +++ b/src/VisualBasic.Workspaces/VisualBasic/VisualBasicSyntaxFactsService.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Composition; diff --git a/src/VisualStudio.Refactorings/Properties/AssemblyInfo.cs b/src/VisualStudio.Refactorings/Properties/AssemblyInfo.cs index 4d6e419199..7eb1b769b5 100644 --- a/src/VisualStudio.Refactorings/Properties/AssemblyInfo.cs +++ b/src/VisualStudio.Refactorings/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Reflection; using System.Resources; diff --git a/src/VisualStudio.Refactorings/VSPackage.cs b/src/VisualStudio.Refactorings/VSPackage.cs index 3fc879811f..6e3302e0d8 100644 --- a/src/VisualStudio.Refactorings/VSPackage.cs +++ b/src/VisualStudio.Refactorings/VSPackage.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Runtime.InteropServices; diff --git a/src/VisualStudio/AnalyzersOptionsPage.cs b/src/VisualStudio/AnalyzersOptionsPage.cs index 9d06fc29fe..a323f43eb1 100644 --- a/src/VisualStudio/AnalyzersOptionsPage.cs +++ b/src/VisualStudio/AnalyzersOptionsPage.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Runtime.InteropServices; diff --git a/src/VisualStudio/AnalyzersOptionsPageControl.xaml.cs b/src/VisualStudio/AnalyzersOptionsPageControl.xaml.cs index 3470835bc3..86735c72fc 100644 --- a/src/VisualStudio/AnalyzersOptionsPageControl.xaml.cs +++ b/src/VisualStudio/AnalyzersOptionsPageControl.xaml.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.ComponentModel; diff --git a/src/VisualStudio/BaseModel.cs b/src/VisualStudio/BaseModel.cs index 79481ead4b..232b1e3f22 100644 --- a/src/VisualStudio/BaseModel.cs +++ b/src/VisualStudio/BaseModel.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.ComponentModel; using System.Diagnostics; diff --git a/src/VisualStudio/BaseOptionsPage.cs b/src/VisualStudio/BaseOptionsPage.cs index 9968f82179..4ea0c2f490 100644 --- a/src/VisualStudio/BaseOptionsPage.cs +++ b/src/VisualStudio/BaseOptionsPage.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/VisualStudio/BaseOptionsPageControl.xaml.cs b/src/VisualStudio/BaseOptionsPageControl.xaml.cs index 64fbe16a25..de3813a8a8 100644 --- a/src/VisualStudio/BaseOptionsPageControl.xaml.cs +++ b/src/VisualStudio/BaseOptionsPageControl.xaml.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.ObjectModel; diff --git a/src/VisualStudio/CodeFixModel.cs b/src/VisualStudio/CodeFixModel.cs index a3d6b5ea84..0a88e2d328 100644 --- a/src/VisualStudio/CodeFixModel.cs +++ b/src/VisualStudio/CodeFixModel.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.VisualStudio; diff --git a/src/VisualStudio/CodeFixesOptionsPage.Generated.cs b/src/VisualStudio/CodeFixesOptionsPage.Generated.cs index f42566c835..ddf2689cf8 100644 --- a/src/VisualStudio/CodeFixesOptionsPage.Generated.cs +++ b/src/VisualStudio/CodeFixesOptionsPage.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/VisualStudio/CodeFixesOptionsPage.cs b/src/VisualStudio/CodeFixesOptionsPage.cs index 90b9f1154b..a2c7957a78 100644 --- a/src/VisualStudio/CodeFixesOptionsPage.cs +++ b/src/VisualStudio/CodeFixesOptionsPage.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/VisualStudio/GeneralOptionsPage.cs b/src/VisualStudio/GeneralOptionsPage.cs index 074fe4b845..77524a5515 100644 --- a/src/VisualStudio/GeneralOptionsPage.cs +++ b/src/VisualStudio/GeneralOptionsPage.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.ComponentModel; diff --git a/src/VisualStudio/GeneralOptionsPageControl.xaml.cs b/src/VisualStudio/GeneralOptionsPageControl.xaml.cs index 3de2dea290..3eda2cb550 100644 --- a/src/VisualStudio/GeneralOptionsPageControl.xaml.cs +++ b/src/VisualStudio/GeneralOptionsPageControl.xaml.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/VisualStudio/Properties/AssemblyInfo.cs b/src/VisualStudio/Properties/AssemblyInfo.cs index 18e8621626..1fab053dc5 100644 --- a/src/VisualStudio/Properties/AssemblyInfo.cs +++ b/src/VisualStudio/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Reflection; using System.Resources; diff --git a/src/VisualStudio/RefactoringsOptionsPage.Generated.cs b/src/VisualStudio/RefactoringsOptionsPage.Generated.cs index 7dd57a3f61..56e690db33 100644 --- a/src/VisualStudio/RefactoringsOptionsPage.Generated.cs +++ b/src/VisualStudio/RefactoringsOptionsPage.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/VisualStudio/RefactoringsOptionsPage.cs b/src/VisualStudio/RefactoringsOptionsPage.cs index 1163799c54..8ee1805515 100644 --- a/src/VisualStudio/RefactoringsOptionsPage.cs +++ b/src/VisualStudio/RefactoringsOptionsPage.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.ComponentModel; diff --git a/src/VisualStudio/RuleSetHelpers.Generated.cs b/src/VisualStudio/RuleSetHelpers.Generated.cs index 26272e1c3c..b813892875 100644 --- a/src/VisualStudio/RuleSetHelpers.Generated.cs +++ b/src/VisualStudio/RuleSetHelpers.Generated.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. // diff --git a/src/VisualStudio/RuleSetHelpers.cs b/src/VisualStudio/RuleSetHelpers.cs index f62be4b4eb..27a87be9d6 100644 --- a/src/VisualStudio/RuleSetHelpers.cs +++ b/src/VisualStudio/RuleSetHelpers.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.IO; diff --git a/src/VisualStudio/TypeConverters/TrueFalseConverter.cs b/src/VisualStudio/TypeConverters/TrueFalseConverter.cs index 89ffbf156a..739686e0fe 100644 --- a/src/VisualStudio/TypeConverters/TrueFalseConverter.cs +++ b/src/VisualStudio/TypeConverters/TrueFalseConverter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.ComponentModel; diff --git a/src/VisualStudio/TypeConverters/YesNoConverter.cs b/src/VisualStudio/TypeConverters/YesNoConverter.cs index 8e94ebb616..0e9b365a12 100644 --- a/src/VisualStudio/TypeConverters/YesNoConverter.cs +++ b/src/VisualStudio/TypeConverters/YesNoConverter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.VisualStudio.TypeConverters; diff --git a/src/VisualStudio/VSPackage.cs b/src/VisualStudio/VSPackage.cs index 058ce10b25..b546bf6cb4 100644 --- a/src/VisualStudio/VSPackage.cs +++ b/src/VisualStudio/VSPackage.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Linq; diff --git a/src/VisualStudio/XElementExtensions.cs b/src/VisualStudio/XElementExtensions.cs index c73f93e8ed..873357d1c1 100644 --- a/src/VisualStudio/XElementExtensions.cs +++ b/src/VisualStudio/XElementExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; using System.Xml.Linq; diff --git a/src/Workspaces.Common/CSharp/CodeActionFactory.cs b/src/Workspaces.Common/CSharp/CodeActionFactory.cs index e8f4c024b2..55b79818df 100644 --- a/src/Workspaces.Common/CSharp/CodeActionFactory.cs +++ b/src/Workspaces.Common/CSharp/CodeActionFactory.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CodeActions; diff --git a/src/Workspaces.Common/CSharp/CodeFixes/ModifiersCodeFixRegistrator.cs b/src/Workspaces.Common/CSharp/CodeFixes/ModifiersCodeFixRegistrator.cs index 7f3c7965b2..de25266438 100644 --- a/src/Workspaces.Common/CSharp/CodeFixes/ModifiersCodeFixRegistrator.cs +++ b/src/Workspaces.Common/CSharp/CodeFixes/ModifiersCodeFixRegistrator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Common/CSharp/DocumentRefactoringFactory.cs b/src/Workspaces.Common/CSharp/DocumentRefactoringFactory.cs index 2c1f7cad3a..101609a5d6 100644 --- a/src/Workspaces.Common/CSharp/DocumentRefactoringFactory.cs +++ b/src/Workspaces.Common/CSharp/DocumentRefactoringFactory.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading; diff --git a/src/Workspaces.Common/CSharp/DocumentRefactorings.cs b/src/Workspaces.Common/CSharp/DocumentRefactorings.cs index f34a0dec24..518d048b75 100644 --- a/src/Workspaces.Common/CSharp/DocumentRefactorings.cs +++ b/src/Workspaces.Common/CSharp/DocumentRefactorings.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/Workspaces.Common/CSharp/Refactorings/AddBracesToIfElseRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/AddBracesToIfElseRefactoring.cs index 470747302b..bb585d407f 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/AddBracesToIfElseRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/AddBracesToIfElseRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading; diff --git a/src/Workspaces.Common/CSharp/Refactorings/AddBracesToSwitchSectionRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/AddBracesToSwitchSectionRefactoring.cs index bf7a872d8e..0ef3d5c90a 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/AddBracesToSwitchSectionRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/AddBracesToSwitchSectionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Workspaces.Common/CSharp/Refactorings/AddExceptionToDocumentationComment/AddExceptionElementToDocumentationCommentRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/AddExceptionToDocumentationComment/AddExceptionElementToDocumentationCommentRefactoring.cs index d0f10adbac..fdd43e6579 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/AddExceptionToDocumentationComment/AddExceptionElementToDocumentationCommentRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/AddExceptionToDocumentationComment/AddExceptionElementToDocumentationCommentRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Common/CSharp/Refactorings/AddParameterToInterfaceMemberRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/AddParameterToInterfaceMemberRefactoring.cs index 899974009b..a9b3eedbfa 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/AddParameterToInterfaceMemberRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/AddParameterToInterfaceMemberRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Common/CSharp/Refactorings/CallExtensionMethodAsInstanceMethodRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/CallExtensionMethodAsInstanceMethodRefactoring.cs index c788253623..61e49036d0 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/CallExtensionMethodAsInstanceMethodRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/CallExtensionMethodAsInstanceMethodRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading; diff --git a/src/Workspaces.Common/CSharp/Refactorings/ChangeAccessibilityRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/ChangeAccessibilityRefactoring.cs index 2d91d0a449..5810e5234e 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/ChangeAccessibilityRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/ChangeAccessibilityRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Workspaces.Common/CSharp/Refactorings/ConvertBlockBodyToExpressionBodyRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/ConvertBlockBodyToExpressionBodyRefactoring.cs index 0180ed5712..17d634203c 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/ConvertBlockBodyToExpressionBodyRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/ConvertBlockBodyToExpressionBodyRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Workspaces.Common/CSharp/Refactorings/ConvertCommentToDocumentationCommentRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/ConvertCommentToDocumentationCommentRefactoring.cs index 18f4eace49..fb3997155b 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/ConvertCommentToDocumentationCommentRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/ConvertCommentToDocumentationCommentRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Diagnostics; diff --git a/src/Workspaces.Common/CSharp/Refactorings/ConvertConditionalExpressionToIfElseRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/ConvertConditionalExpressionToIfElseRefactoring.cs index 9a6c9632d6..4879fb8bba 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/ConvertConditionalExpressionToIfElseRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/ConvertConditionalExpressionToIfElseRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading; diff --git a/src/Workspaces.Common/CSharp/Refactorings/ConvertExpressionBodyToBlockBodyRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/ConvertExpressionBodyToBlockBodyRefactoring.cs index 417945ff1d..2d0db992b9 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/ConvertExpressionBodyToBlockBodyRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/ConvertExpressionBodyToBlockBodyRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Common/CSharp/Refactorings/ConvertForEachToForRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/ConvertForEachToForRefactoring.cs index 2fdbeae527..2d7b23f367 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/ConvertForEachToForRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/ConvertForEachToForRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Threading; diff --git a/src/Workspaces.Common/CSharp/Refactorings/ConvertHasFlagCallToBitwiseOperationRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/ConvertHasFlagCallToBitwiseOperationRefactoring.cs index 300fdb8970..75d5fc3670 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/ConvertHasFlagCallToBitwiseOperationRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/ConvertHasFlagCallToBitwiseOperationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Workspaces.Common/CSharp/Refactorings/ConvertInterpolatedStringToStringBuilderMethodRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/ConvertInterpolatedStringToStringBuilderMethodRefactoring.cs index 20d5343316..b936643a74 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/ConvertInterpolatedStringToStringBuilderMethodRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/ConvertInterpolatedStringToStringBuilderMethodRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Workspaces.Common/CSharp/Refactorings/ConvertInterpolatedStringToStringLiteralRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/ConvertInterpolatedStringToStringLiteralRefactoring.cs index 8004996d0f..96fcbbaac3 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/ConvertInterpolatedStringToStringLiteralRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/ConvertInterpolatedStringToStringLiteralRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Workspaces.Common/CSharp/Refactorings/ConvertLambdaBlockBodyToExpressionBodyRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/ConvertLambdaBlockBodyToExpressionBodyRefactoring.cs index d0df2d2810..2eebcee125 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/ConvertLambdaBlockBodyToExpressionBodyRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/ConvertLambdaBlockBodyToExpressionBodyRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading; diff --git a/src/Workspaces.Common/CSharp/Refactorings/ConvertMethodGroupToAnonymousFunctionRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/ConvertMethodGroupToAnonymousFunctionRefactoring.cs index c58368a378..7c7326d524 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/ConvertMethodGroupToAnonymousFunctionRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/ConvertMethodGroupToAnonymousFunctionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Linq; diff --git a/src/Workspaces.Common/CSharp/Refactorings/CopyMemberDeclarationRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/CopyMemberDeclarationRefactoring.cs index 7aea5f579e..02216ba8e2 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/CopyMemberDeclarationRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/CopyMemberDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Workspaces.Common/CSharp/Refactorings/ExpandCompoundAssignmentRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/ExpandCompoundAssignmentRefactoring.cs index 2b56280b3b..637bd45a03 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/ExpandCompoundAssignmentRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/ExpandCompoundAssignmentRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Workspaces.Common/CSharp/Refactorings/ExtractTypeDeclarationToNewDocumentRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/ExtractTypeDeclarationToNewDocumentRefactoring.cs index 37604812f6..6aa1183d02 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/ExtractTypeDeclarationToNewDocumentRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/ExtractTypeDeclarationToNewDocumentRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Workspaces.Common/CSharp/Refactorings/GenerateBaseConstructorsRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/GenerateBaseConstructorsRefactoring.cs index bca8670193..9259e23b78 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/GenerateBaseConstructorsRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/GenerateBaseConstructorsRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Diagnostics; diff --git a/src/Workspaces.Common/CSharp/Refactorings/IfRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/IfRefactoring.cs index d31faf96f7..b4a19291b9 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/IfRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/IfRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/Workspaces.Common/CSharp/Refactorings/InlineAliasExpressionRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/InlineAliasExpressionRefactoring.cs index 8a1ebc1b78..1cd2bbf57f 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/InlineAliasExpressionRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/InlineAliasExpressionRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using System.Threading; diff --git a/src/Workspaces.Common/CSharp/Refactorings/IntroduceFieldRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/IntroduceFieldRefactoring.cs index e3a4965327..998b07dfe9 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/IntroduceFieldRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/IntroduceFieldRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Workspaces.Common/CSharp/Refactorings/IntroduceFieldToLockOnRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/IntroduceFieldToLockOnRefactoring.cs index a01feca37c..9136210835 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/IntroduceFieldToLockOnRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/IntroduceFieldToLockOnRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using System.Threading; diff --git a/src/Workspaces.Common/CSharp/Refactorings/IntroduceLocalVariableRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/IntroduceLocalVariableRefactoring.cs index 5176ec2d47..e5ffa647a1 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/IntroduceLocalVariableRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/IntroduceLocalVariableRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Workspaces.Common/CSharp/Refactorings/MarkTypeWithDebuggerDisplayAttributeRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/MarkTypeWithDebuggerDisplayAttributeRefactoring.cs index dbe3353023..9ba52cd442 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/MarkTypeWithDebuggerDisplayAttributeRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/MarkTypeWithDebuggerDisplayAttributeRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Workspaces.Common/CSharp/Refactorings/ReduceIfNesting/ReduceIfNestingRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/ReduceIfNesting/ReduceIfNestingRefactoring.cs index f5bd62a6b6..3fc9c5a550 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/ReduceIfNesting/ReduceIfNestingRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/ReduceIfNesting/ReduceIfNestingRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Workspaces.Common/CSharp/Refactorings/ReduceIfNesting/ReduceIfNestingRewriter.cs b/src/Workspaces.Common/CSharp/Refactorings/ReduceIfNesting/ReduceIfNestingRewriter.cs index 21363324af..ac3358fae9 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/ReduceIfNesting/ReduceIfNestingRewriter.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/ReduceIfNesting/ReduceIfNestingRewriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Linq; diff --git a/src/Workspaces.Common/CSharp/Refactorings/RemoveAsyncAwait.cs b/src/Workspaces.Common/CSharp/Refactorings/RemoveAsyncAwait.cs index 48841a9b5d..ca77bf502f 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/RemoveAsyncAwait.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/RemoveAsyncAwait.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading; diff --git a/src/Workspaces.Common/CSharp/Refactorings/RemoveBracesFromIfElseElseRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/RemoveBracesFromIfElseElseRefactoring.cs index 64de0e81e3..4b1426ac61 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/RemoveBracesFromIfElseElseRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/RemoveBracesFromIfElseElseRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Workspaces.Common/CSharp/Refactorings/ReplaceAsExpressionWithExplicitCastRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/ReplaceAsExpressionWithExplicitCastRefactoring.cs index 7dcaa490b2..be0131428a 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/ReplaceAsExpressionWithExplicitCastRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/ReplaceAsExpressionWithExplicitCastRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Workspaces.Common/CSharp/Refactorings/SplitVariableDeclarationRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/SplitVariableDeclarationRefactoring.cs index 4b6488d6e9..7f82c17f3b 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/SplitVariableDeclarationRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/SplitVariableDeclarationRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Common/CSharp/Refactorings/UseConstantInsteadOfReadOnlyFieldRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/UseConstantInsteadOfReadOnlyFieldRefactoring.cs index 736957460d..7f1be25b83 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/UseConstantInsteadOfReadOnlyFieldRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/UseConstantInsteadOfReadOnlyFieldRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Workspaces.Common/CSharp/Refactorings/UseElementAccessInsteadOfEnumerableMethodRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/UseElementAccessInsteadOfEnumerableMethodRefactoring.cs index 083dbf73da..3d884c8f5c 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/UseElementAccessInsteadOfEnumerableMethodRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/UseElementAccessInsteadOfEnumerableMethodRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; diff --git a/src/Workspaces.Common/CSharp/Refactorings/UseLambdaInsteadOfAnonymousMethodRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/UseLambdaInsteadOfAnonymousMethodRefactoring.cs index 1f820d2874..8cf14eb32a 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/UseLambdaInsteadOfAnonymousMethodRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/UseLambdaInsteadOfAnonymousMethodRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Workspaces.Common/CSharp/Refactorings/UseMethodChainingRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/UseMethodChainingRefactoring.cs index 335a509cd4..1b5a69a7f1 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/UseMethodChainingRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/UseMethodChainingRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Text; using System.Threading; diff --git a/src/Workspaces.Common/CSharp/Refactorings/UseReadOnlyFieldInsteadOfConstantRefactoring.cs b/src/Workspaces.Common/CSharp/Refactorings/UseReadOnlyFieldInsteadOfConstantRefactoring.cs index eea05f9477..84178f08ed 100644 --- a/src/Workspaces.Common/CSharp/Refactorings/UseReadOnlyFieldInsteadOfConstantRefactoring.cs +++ b/src/Workspaces.Common/CSharp/Refactorings/UseReadOnlyFieldInsteadOfConstantRefactoring.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using System.Threading.Tasks; diff --git a/src/Workspaces.Common/CSharp/SyntaxFormatter.cs b/src/Workspaces.Common/CSharp/SyntaxFormatter.cs index 20d6d6a471..dfb3431686 100644 --- a/src/Workspaces.Common/CSharp/SyntaxFormatter.cs +++ b/src/Workspaces.Common/CSharp/SyntaxFormatter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Common/CodeFixes/AbstractCodeFixProvider.cs b/src/Workspaces.Common/CodeFixes/AbstractCodeFixProvider.cs index f879eb8584..22702a6002 100644 --- a/src/Workspaces.Common/CodeFixes/AbstractCodeFixProvider.cs +++ b/src/Workspaces.Common/CodeFixes/AbstractCodeFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/Workspaces.Common/CommonFixContext.cs b/src/Workspaces.Common/CommonFixContext.cs index 2fd9364d73..a417ee461d 100644 --- a/src/Workspaces.Common/CommonFixContext.cs +++ b/src/Workspaces.Common/CommonFixContext.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using Microsoft.CodeAnalysis; diff --git a/src/Workspaces.Common/CommonWorkspaceExtensions.cs b/src/Workspaces.Common/CommonWorkspaceExtensions.cs index 0dd0f6b58a..1b3df53009 100644 --- a/src/Workspaces.Common/CommonWorkspaceExtensions.cs +++ b/src/Workspaces.Common/CommonWorkspaceExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using Microsoft.CodeAnalysis; diff --git a/src/Workspaces.Core/AnalyzerAssembly.cs b/src/Workspaces.Core/AnalyzerAssembly.cs index 93d9bf29c8..b54c3eb237 100644 --- a/src/Workspaces.Core/AnalyzerAssembly.cs +++ b/src/Workspaces.Core/AnalyzerAssembly.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Core/AnalyzerAssemblyEventArgs.cs b/src/Workspaces.Core/AnalyzerAssemblyEventArgs.cs index e6eff51ac0..df595677cd 100644 --- a/src/Workspaces.Core/AnalyzerAssemblyEventArgs.cs +++ b/src/Workspaces.Core/AnalyzerAssemblyEventArgs.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Workspaces.Core/AnalyzerLoader.cs b/src/Workspaces.Core/AnalyzerLoader.cs index ef38e7fb35..3d77c33231 100644 --- a/src/Workspaces.Core/AnalyzerLoader.cs +++ b/src/Workspaces.Core/AnalyzerLoader.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Core/AttributeInfo.cs b/src/Workspaces.Core/AttributeInfo.cs index 202ba4d6a1..d7c490c427 100644 --- a/src/Workspaces.Core/AttributeInfo.cs +++ b/src/Workspaces.Core/AttributeInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using Microsoft.CodeAnalysis; diff --git a/src/Workspaces.Core/CodeActions/CodeActionData.cs b/src/Workspaces.Core/CodeActions/CodeActionData.cs index b46a30277a..cf08a97c9a 100644 --- a/src/Workspaces.Core/CodeActions/CodeActionData.cs +++ b/src/Workspaces.Core/CodeActions/CodeActionData.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Threading; diff --git a/src/Workspaces.Core/CodeActions/NavigationAnnotation.cs b/src/Workspaces.Core/CodeActions/NavigationAnnotation.cs index 3867a5ef4f..dded695b24 100644 --- a/src/Workspaces.Core/CodeActions/NavigationAnnotation.cs +++ b/src/Workspaces.Core/CodeActions/NavigationAnnotation.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; diff --git a/src/Workspaces.Core/CodeAnalysisOptions.cs b/src/Workspaces.Core/CodeAnalysisOptions.cs index d81200d632..d94aab073d 100644 --- a/src/Workspaces.Core/CodeAnalysisOptions.cs +++ b/src/Workspaces.Core/CodeAnalysisOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Core/CodeFixes/CodeFixer.cs b/src/Workspaces.Core/CodeFixes/CodeFixer.cs index 053aab8061..630a690c14 100644 --- a/src/Workspaces.Core/CodeFixes/CodeFixer.cs +++ b/src/Workspaces.Core/CodeFixes/CodeFixer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Core/CodeFixes/CodeFixerOptions.cs b/src/Workspaces.Core/CodeFixes/CodeFixerOptions.cs index 018d6564bc..4e8cbbe697 100644 --- a/src/Workspaces.Core/CodeFixes/CodeFixerOptions.cs +++ b/src/Workspaces.Core/CodeFixes/CodeFixerOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Core/CodeFixes/DiagnosticDescriptorFixComparer.cs b/src/Workspaces.Core/CodeFixes/DiagnosticDescriptorFixComparer.cs index 3ce228b4c7..9b63f6af49 100644 --- a/src/Workspaces.Core/CodeFixes/DiagnosticDescriptorFixComparer.cs +++ b/src/Workspaces.Core/CodeFixes/DiagnosticDescriptorFixComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Workspaces.Core/CodeFixes/DiagnosticFix.cs b/src/Workspaces.Core/CodeFixes/DiagnosticFix.cs index f4d567e8e3..e42b76cd3d 100644 --- a/src/Workspaces.Core/CodeFixes/DiagnosticFix.cs +++ b/src/Workspaces.Core/CodeFixes/DiagnosticFix.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CodeActions; diff --git a/src/Workspaces.Core/CodeFixes/DiagnosticFixKind.cs b/src/Workspaces.Core/CodeFixes/DiagnosticFixKind.cs index 999ec35884..57acea6a86 100644 --- a/src/Workspaces.Core/CodeFixes/DiagnosticFixKind.cs +++ b/src/Workspaces.Core/CodeFixes/DiagnosticFixKind.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CodeFixes; diff --git a/src/Workspaces.Core/CodeFixes/DiagnosticFixProvider.cs b/src/Workspaces.Core/CodeFixes/DiagnosticFixProvider.cs index a81eb1cfb4..5377fe4c19 100644 --- a/src/Workspaces.Core/CodeFixes/DiagnosticFixProvider.cs +++ b/src/Workspaces.Core/CodeFixes/DiagnosticFixProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Core/CodeFixes/DiagnosticFixResult.cs b/src/Workspaces.Core/CodeFixes/DiagnosticFixResult.cs index 520d692dde..08365c1cd4 100644 --- a/src/Workspaces.Core/CodeFixes/DiagnosticFixResult.cs +++ b/src/Workspaces.Core/CodeFixes/DiagnosticFixResult.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Workspaces.Core/CodeFixes/FixAllDiagnosticProvider.cs b/src/Workspaces.Core/CodeFixes/FixAllDiagnosticProvider.cs index 9a6460be64..ebdfc63971 100644 --- a/src/Workspaces.Core/CodeFixes/FixAllDiagnosticProvider.cs +++ b/src/Workspaces.Core/CodeFixes/FixAllDiagnosticProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Core/CodeFixes/ProjectFixKind.cs b/src/Workspaces.Core/CodeFixes/ProjectFixKind.cs index 1b8852608b..ea77e1e3d0 100644 --- a/src/Workspaces.Core/CodeFixes/ProjectFixKind.cs +++ b/src/Workspaces.Core/CodeFixes/ProjectFixKind.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Workspaces.Core/CodeFixes/ProjectFixResult.cs b/src/Workspaces.Core/CodeFixes/ProjectFixResult.cs index d1fdba9e62..7bc90c1b4a 100644 --- a/src/Workspaces.Core/CodeFixes/ProjectFixResult.cs +++ b/src/Workspaces.Core/CodeFixes/ProjectFixResult.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Workspaces.Core/CodeMetrics/CodeMetricsInfo.cs b/src/Workspaces.Core/CodeMetrics/CodeMetricsInfo.cs index e0ec9595e3..bbd6c22e8f 100644 --- a/src/Workspaces.Core/CodeMetrics/CodeMetricsInfo.cs +++ b/src/Workspaces.Core/CodeMetrics/CodeMetricsInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Core/CodeMetrics/CodeMetricsOptions.cs b/src/Workspaces.Core/CodeMetrics/CodeMetricsOptions.cs index 9b9b8cfc80..00731a0207 100644 --- a/src/Workspaces.Core/CodeMetrics/CodeMetricsOptions.cs +++ b/src/Workspaces.Core/CodeMetrics/CodeMetricsOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CodeMetrics; diff --git a/src/Workspaces.Core/CodeMetrics/CodeMetricsService.cs b/src/Workspaces.Core/CodeMetrics/CodeMetricsService.cs index 1c233fce4a..58f6a910a8 100644 --- a/src/Workspaces.Core/CodeMetrics/CodeMetricsService.cs +++ b/src/Workspaces.Core/CodeMetrics/CodeMetricsService.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using Microsoft.CodeAnalysis; diff --git a/src/Workspaces.Core/CodeMetrics/ICodeMetricsService.cs b/src/Workspaces.Core/CodeMetrics/ICodeMetricsService.cs index 7ac990a634..0eda5934f1 100644 --- a/src/Workspaces.Core/CodeMetrics/ICodeMetricsService.cs +++ b/src/Workspaces.Core/CodeMetrics/ICodeMetricsService.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading; using Microsoft.CodeAnalysis; diff --git a/src/Workspaces.Core/CodeMetrics/LinesOfCodeKind.cs b/src/Workspaces.Core/CodeMetrics/LinesOfCodeKind.cs index d15711ff55..b2692f5830 100644 --- a/src/Workspaces.Core/CodeMetrics/LinesOfCodeKind.cs +++ b/src/Workspaces.Core/CodeMetrics/LinesOfCodeKind.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.CodeMetrics; diff --git a/src/Workspaces.Core/Comparers/MemberSymbolDefinitionComparer.cs b/src/Workspaces.Core/Comparers/MemberSymbolDefinitionComparer.cs index 50cce898e3..9600b3aad8 100644 --- a/src/Workspaces.Core/Comparers/MemberSymbolDefinitionComparer.cs +++ b/src/Workspaces.Core/Comparers/MemberSymbolDefinitionComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Workspaces.Core/Comparers/NamedTypeSymbolDefinitionComparer.cs b/src/Workspaces.Core/Comparers/NamedTypeSymbolDefinitionComparer.cs index c537bfec71..f16d29359d 100644 --- a/src/Workspaces.Core/Comparers/NamedTypeSymbolDefinitionComparer.cs +++ b/src/Workspaces.Core/Comparers/NamedTypeSymbolDefinitionComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Diagnostics; diff --git a/src/Workspaces.Core/Comparers/NamespaceSymbolDefinitionComparer.cs b/src/Workspaces.Core/Comparers/NamespaceSymbolDefinitionComparer.cs index 57cb90a9e1..b35bba989e 100644 --- a/src/Workspaces.Core/Comparers/NamespaceSymbolDefinitionComparer.cs +++ b/src/Workspaces.Core/Comparers/NamespaceSymbolDefinitionComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using Microsoft.CodeAnalysis; diff --git a/src/Workspaces.Core/Comparers/SymbolDefinitionComparer.cs b/src/Workspaces.Core/Comparers/SymbolDefinitionComparer.cs index 6524dd0f8a..7008ccc7be 100644 --- a/src/Workspaces.Core/Comparers/SymbolDefinitionComparer.cs +++ b/src/Workspaces.Core/Comparers/SymbolDefinitionComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Core/ConsoleUtility.cs b/src/Workspaces.Core/ConsoleUtility.cs index 01e611bc82..5d60ca8e4f 100644 --- a/src/Workspaces.Core/ConsoleUtility.cs +++ b/src/Workspaces.Core/ConsoleUtility.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Core/DiagnosticFormatter.cs b/src/Workspaces.Core/DiagnosticFormatter.cs index 4a5a799874..01e88ae8e9 100644 --- a/src/Workspaces.Core/DiagnosticFormatter.cs +++ b/src/Workspaces.Core/DiagnosticFormatter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Text; diff --git a/src/Workspaces.Core/DiagnosticInfo.cs b/src/Workspaces.Core/DiagnosticInfo.cs index 6e2ca5f284..c75d23a5fb 100644 --- a/src/Workspaces.Core/DiagnosticInfo.cs +++ b/src/Workspaces.Core/DiagnosticInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; diff --git a/src/Workspaces.Core/Diagnostics/CodeAnalyzer.cs b/src/Workspaces.Core/Diagnostics/CodeAnalyzer.cs index a00fd0d188..2bc140db4c 100644 --- a/src/Workspaces.Core/Diagnostics/CodeAnalyzer.cs +++ b/src/Workspaces.Core/Diagnostics/CodeAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Core/Diagnostics/CodeAnalyzerOptions.cs b/src/Workspaces.Core/Diagnostics/CodeAnalyzerOptions.cs index 688cf05b65..1a971075c1 100644 --- a/src/Workspaces.Core/Diagnostics/CodeAnalyzerOptions.cs +++ b/src/Workspaces.Core/Diagnostics/CodeAnalyzerOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using Microsoft.CodeAnalysis; diff --git a/src/Workspaces.Core/Diagnostics/ProjectAnalysisResult.cs b/src/Workspaces.Core/Diagnostics/ProjectAnalysisResult.cs index f72211bd1b..544e1d1521 100644 --- a/src/Workspaces.Core/Diagnostics/ProjectAnalysisResult.cs +++ b/src/Workspaces.Core/Diagnostics/ProjectAnalysisResult.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Workspaces.Core/DialogResult.cs b/src/Workspaces.Core/DialogResult.cs index fae79b096a..3078228fc4 100644 --- a/src/Workspaces.Core/DialogResult.cs +++ b/src/Workspaces.Core/DialogResult.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator; diff --git a/src/Workspaces.Core/DocumentReferenceInfo.cs b/src/Workspaces.Core/DocumentReferenceInfo.cs index 9d1cdb182d..1abe828bc6 100644 --- a/src/Workspaces.Core/DocumentReferenceInfo.cs +++ b/src/Workspaces.Core/DocumentReferenceInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Workspaces.Core/Extensions/CodeFixContextExtensions.cs b/src/Workspaces.Core/Extensions/CodeFixContextExtensions.cs index b7fae659c5..14e251b5ff 100644 --- a/src/Workspaces.Core/Extensions/CodeFixContextExtensions.cs +++ b/src/Workspaces.Core/Extensions/CodeFixContextExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Threading.Tasks; using Microsoft.CodeAnalysis; diff --git a/src/Workspaces.Core/Extensions/CollectionExtensions.cs b/src/Workspaces.Core/Extensions/CollectionExtensions.cs index c9cbb7bfa6..a90c09d55d 100644 --- a/src/Workspaces.Core/Extensions/CollectionExtensions.cs +++ b/src/Workspaces.Core/Extensions/CollectionExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Core/Extensions/Extensions.cs b/src/Workspaces.Core/Extensions/Extensions.cs index 8a02ce90eb..8f6e0bbb24 100644 --- a/src/Workspaces.Core/Extensions/Extensions.cs +++ b/src/Workspaces.Core/Extensions/Extensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Core/Extensions/SyntaxFactsServiceExtensions.cs b/src/Workspaces.Core/Extensions/SyntaxFactsServiceExtensions.cs index 64d596bb40..c55a3fa6ae 100644 --- a/src/Workspaces.Core/Extensions/SyntaxFactsServiceExtensions.cs +++ b/src/Workspaces.Core/Extensions/SyntaxFactsServiceExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using Microsoft.CodeAnalysis; diff --git a/src/Workspaces.Core/Extensions/WorkspaceExtensions.cs b/src/Workspaces.Core/Extensions/WorkspaceExtensions.cs index 998da6b2d5..e7bc06e554 100644 --- a/src/Workspaces.Core/Extensions/WorkspaceExtensions.cs +++ b/src/Workspaces.Core/Extensions/WorkspaceExtensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Core/FileSystemFilter.cs b/src/Workspaces.Core/FileSystemFilter.cs index 432976e16b..d4b9769c7b 100644 --- a/src/Workspaces.Core/FileSystemFilter.cs +++ b/src/Workspaces.Core/FileSystemFilter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Core/FindSymbols/AttributeFilterRule.cs b/src/Workspaces.Core/FindSymbols/AttributeFilterRule.cs index 1a7ad9bc31..16aed4b783 100644 --- a/src/Workspaces.Core/FindSymbols/AttributeFilterRule.cs +++ b/src/Workspaces.Core/FindSymbols/AttributeFilterRule.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.FindSymbols; diff --git a/src/Workspaces.Core/FindSymbols/FilterRule`1.cs b/src/Workspaces.Core/FindSymbols/FilterRule`1.cs index 46aeb5d2ce..920e3a6254 100644 --- a/src/Workspaces.Core/FindSymbols/FilterRule`1.cs +++ b/src/Workspaces.Core/FindSymbols/FilterRule`1.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; diff --git a/src/Workspaces.Core/FindSymbols/IFindSymbolsProgress.cs b/src/Workspaces.Core/FindSymbols/IFindSymbolsProgress.cs index 0acbc6462b..f96853edd9 100644 --- a/src/Workspaces.Core/FindSymbols/IFindSymbolsProgress.cs +++ b/src/Workspaces.Core/FindSymbols/IFindSymbolsProgress.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; diff --git a/src/Workspaces.Core/FindSymbols/IgnoredAttributeNameFilterRule.cs b/src/Workspaces.Core/FindSymbols/IgnoredAttributeNameFilterRule.cs index 64fd78cf9f..a9815e049f 100644 --- a/src/Workspaces.Core/FindSymbols/IgnoredAttributeNameFilterRule.cs +++ b/src/Workspaces.Core/FindSymbols/IgnoredAttributeNameFilterRule.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Workspaces.Core/FindSymbols/IgnoredNameSymbolFilterRule.cs b/src/Workspaces.Core/FindSymbols/IgnoredNameSymbolFilterRule.cs index 9868a24a03..1837c9d3d0 100644 --- a/src/Workspaces.Core/FindSymbols/IgnoredNameSymbolFilterRule.cs +++ b/src/Workspaces.Core/FindSymbols/IgnoredNameSymbolFilterRule.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Diagnostics; diff --git a/src/Workspaces.Core/FindSymbols/PredicateSymbolFilterRule.cs b/src/Workspaces.Core/FindSymbols/PredicateSymbolFilterRule.cs index 66ee297533..229205a7f0 100644 --- a/src/Workspaces.Core/FindSymbols/PredicateSymbolFilterRule.cs +++ b/src/Workspaces.Core/FindSymbols/PredicateSymbolFilterRule.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.CodeAnalysis; diff --git a/src/Workspaces.Core/FindSymbols/SymbolFilterOptions.cs b/src/Workspaces.Core/FindSymbols/SymbolFilterOptions.cs index 34a828e4b5..5c115441ac 100644 --- a/src/Workspaces.Core/FindSymbols/SymbolFilterOptions.cs +++ b/src/Workspaces.Core/FindSymbols/SymbolFilterOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Core/FindSymbols/SymbolFilterReason.cs b/src/Workspaces.Core/FindSymbols/SymbolFilterReason.cs index 1f3f67111d..4463cc3c0d 100644 --- a/src/Workspaces.Core/FindSymbols/SymbolFilterReason.cs +++ b/src/Workspaces.Core/FindSymbols/SymbolFilterReason.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.FindSymbols; diff --git a/src/Workspaces.Core/FindSymbols/SymbolFilterRule.cs b/src/Workspaces.Core/FindSymbols/SymbolFilterRule.cs index af3a4e3005..193ccb7aef 100644 --- a/src/Workspaces.Core/FindSymbols/SymbolFilterRule.cs +++ b/src/Workspaces.Core/FindSymbols/SymbolFilterRule.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; diff --git a/src/Workspaces.Core/FindSymbols/SymbolFinder.cs b/src/Workspaces.Core/FindSymbols/SymbolFinder.cs index fdddba01c8..5e8e6215be 100644 --- a/src/Workspaces.Core/FindSymbols/SymbolFinder.cs +++ b/src/Workspaces.Core/FindSymbols/SymbolFinder.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Workspaces.Core/FindSymbols/SymbolFinderOptions.cs b/src/Workspaces.Core/FindSymbols/SymbolFinderOptions.cs index 8081a302f3..90337f73a1 100644 --- a/src/Workspaces.Core/FindSymbols/SymbolFinderOptions.cs +++ b/src/Workspaces.Core/FindSymbols/SymbolFinderOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; diff --git a/src/Workspaces.Core/FindSymbols/WithAttributeFilterRule.cs b/src/Workspaces.Core/FindSymbols/WithAttributeFilterRule.cs index 3a1444841d..52b9b24871 100644 --- a/src/Workspaces.Core/FindSymbols/WithAttributeFilterRule.cs +++ b/src/Workspaces.Core/FindSymbols/WithAttributeFilterRule.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Diagnostics; diff --git a/src/Workspaces.Core/FindSymbols/WithoutAttributeFilterRule.cs b/src/Workspaces.Core/FindSymbols/WithoutAttributeFilterRule.cs index da2667fc20..121afedb91 100644 --- a/src/Workspaces.Core/FindSymbols/WithoutAttributeFilterRule.cs +++ b/src/Workspaces.Core/FindSymbols/WithoutAttributeFilterRule.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Diagnostics; diff --git a/src/Workspaces.Core/Formatting/CodeFormatter.cs b/src/Workspaces.Core/Formatting/CodeFormatter.cs index dcd2fa1d4f..161b17e95d 100644 --- a/src/Workspaces.Core/Formatting/CodeFormatter.cs +++ b/src/Workspaces.Core/Formatting/CodeFormatter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Workspaces.Core/Formatting/CodeFormatterOptions.cs b/src/Workspaces.Core/Formatting/CodeFormatterOptions.cs index 18dd632d71..d9dc16592d 100644 --- a/src/Workspaces.Core/Formatting/CodeFormatterOptions.cs +++ b/src/Workspaces.Core/Formatting/CodeFormatterOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Formatting; diff --git a/src/Workspaces.Core/Host/Mef/LanguageMetadata.cs b/src/Workspaces.Core/Host/Mef/LanguageMetadata.cs index d2b4b4d083..9be9ebb2a0 100644 --- a/src/Workspaces.Core/Host/Mef/LanguageMetadata.cs +++ b/src/Workspaces.Core/Host/Mef/LanguageMetadata.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; diff --git a/src/Workspaces.Core/Host/Mef/LanguageServiceMetadata.cs b/src/Workspaces.Core/Host/Mef/LanguageServiceMetadata.cs index 8fe71dcf4d..6769b97272 100644 --- a/src/Workspaces.Core/Host/Mef/LanguageServiceMetadata.cs +++ b/src/Workspaces.Core/Host/Mef/LanguageServiceMetadata.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; diff --git a/src/Workspaces.Core/Host/Mef/MefHostServices.cs b/src/Workspaces.Core/Host/Mef/MefHostServices.cs index 353d814d1c..7f4696afcb 100644 --- a/src/Workspaces.Core/Host/Mef/MefHostServices.cs +++ b/src/Workspaces.Core/Host/Mef/MefHostServices.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Core/Host/Mef/MefLanguageServices.cs b/src/Workspaces.Core/Host/Mef/MefLanguageServices.cs index 48740e1aad..3eb79a2412 100644 --- a/src/Workspaces.Core/Host/Mef/MefLanguageServices.cs +++ b/src/Workspaces.Core/Host/Mef/MefLanguageServices.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; diff --git a/src/Workspaces.Core/Host/Mef/MefWorkspaceServices.cs b/src/Workspaces.Core/Host/Mef/MefWorkspaceServices.cs index 358938c7ba..ca05120b8d 100644 --- a/src/Workspaces.Core/Host/Mef/MefWorkspaceServices.cs +++ b/src/Workspaces.Core/Host/Mef/MefWorkspaceServices.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Core/ISyntaxFactsService.cs b/src/Workspaces.Core/ISyntaxFactsService.cs index d30b44b773..ef8566db6d 100644 --- a/src/Workspaces.Core/ISyntaxFactsService.cs +++ b/src/Workspaces.Core/ISyntaxFactsService.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.Host; diff --git a/src/Workspaces.Core/IUserDialog.cs b/src/Workspaces.Core/IUserDialog.cs index 23adb192ad..2e54bc7ead 100644 --- a/src/Workspaces.Core/IUserDialog.cs +++ b/src/Workspaces.Core/IUserDialog.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator; diff --git a/src/Workspaces.Core/Logging/ConsoleColors.cs b/src/Workspaces.Core/Logging/ConsoleColors.cs index 730cfe2022..2479e29048 100644 --- a/src/Workspaces.Core/Logging/ConsoleColors.cs +++ b/src/Workspaces.Core/Logging/ConsoleColors.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/Workspaces.Core/Logging/ConsoleWriter.cs b/src/Workspaces.Core/Logging/ConsoleWriter.cs index 34b94e52b8..69f300b890 100644 --- a/src/Workspaces.Core/Logging/ConsoleWriter.cs +++ b/src/Workspaces.Core/Logging/ConsoleWriter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Workspaces.Core/Logging/LogHelpers.cs b/src/Workspaces.Core/Logging/LogHelpers.cs index 41fc2c2cb5..e2e74d09ec 100644 --- a/src/Workspaces.Core/Logging/LogHelpers.cs +++ b/src/Workspaces.Core/Logging/LogHelpers.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Core/Logging/LogMessage.cs b/src/Workspaces.Core/Logging/LogMessage.cs index 4714cc2a70..0f2e999094 100644 --- a/src/Workspaces.Core/Logging/LogMessage.cs +++ b/src/Workspaces.Core/Logging/LogMessage.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator; diff --git a/src/Workspaces.Core/Logging/Logger.cs b/src/Workspaces.Core/Logging/Logger.cs index 0bf5834101..c670f7ab93 100644 --- a/src/Workspaces.Core/Logging/Logger.cs +++ b/src/Workspaces.Core/Logging/Logger.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Workspaces.Core/Logging/TextWriterWithVerbosity.cs b/src/Workspaces.Core/Logging/TextWriterWithVerbosity.cs index 3a2e72a432..de9bd3aa92 100644 --- a/src/Workspaces.Core/Logging/TextWriterWithVerbosity.cs +++ b/src/Workspaces.Core/Logging/TextWriterWithVerbosity.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.IO; diff --git a/src/Workspaces.Core/Logging/Verbosity.cs b/src/Workspaces.Core/Logging/Verbosity.cs index 444d67a4e5..eefd89c91b 100644 --- a/src/Workspaces.Core/Logging/Verbosity.cs +++ b/src/Workspaces.Core/Logging/Verbosity.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator; diff --git a/src/Workspaces.Core/MemberNameGenerator.cs b/src/Workspaces.Core/MemberNameGenerator.cs index 019a1b8af0..54a0a89bf7 100644 --- a/src/Workspaces.Core/MemberNameGenerator.cs +++ b/src/Workspaces.Core/MemberNameGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Core/MetadataNameSet.cs b/src/Workspaces.Core/MetadataNameSet.cs index 85cb4a3035..58238bbb44 100644 --- a/src/Workspaces.Core/MetadataNameSet.cs +++ b/src/Workspaces.Core/MetadataNameSet.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable; diff --git a/src/Workspaces.Core/PathUtilities.cs b/src/Workspaces.Core/PathUtilities.cs index db62d26635..3430a46e69 100644 --- a/src/Workspaces.Core/PathUtilities.cs +++ b/src/Workspaces.Core/PathUtilities.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.IO; diff --git a/src/Workspaces.Core/ProjectOrSolution.cs b/src/Workspaces.Core/ProjectOrSolution.cs index fae023409c..1ea8bd55ca 100644 --- a/src/Workspaces.Core/ProjectOrSolution.cs +++ b/src/Workspaces.Core/ProjectOrSolution.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.CodeAnalysis; diff --git a/src/Workspaces.Core/Rename/CompilationErrorResolution.cs b/src/Workspaces.Core/Rename/CompilationErrorResolution.cs index f9f1005281..893231f4a3 100644 --- a/src/Workspaces.Core/Rename/CompilationErrorResolution.cs +++ b/src/Workspaces.Core/Rename/CompilationErrorResolution.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Rename; diff --git a/src/Workspaces.Core/Rename/DiffSpan.cs b/src/Workspaces.Core/Rename/DiffSpan.cs index f89e264037..e9c96cabb5 100644 --- a/src/Workspaces.Core/Rename/DiffSpan.cs +++ b/src/Workspaces.Core/Rename/DiffSpan.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using Microsoft.CodeAnalysis.Text; diff --git a/src/Workspaces.Core/Rename/DiffTracker.cs b/src/Workspaces.Core/Rename/DiffTracker.cs index 6fefecff9b..eaff594cd2 100644 --- a/src/Workspaces.Core/Rename/DiffTracker.cs +++ b/src/Workspaces.Core/Rename/DiffTracker.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Diagnostics; diff --git a/src/Workspaces.Core/Rename/FindSymbolService.cs b/src/Workspaces.Core/Rename/FindSymbolService.cs index 6cf29e4218..57a1d9eb3b 100644 --- a/src/Workspaces.Core/Rename/FindSymbolService.cs +++ b/src/Workspaces.Core/Rename/FindSymbolService.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/Workspaces.Core/Rename/IFindSymbolService.cs b/src/Workspaces.Core/Rename/IFindSymbolService.cs index 33bfd368fc..f53656edb3 100644 --- a/src/Workspaces.Core/Rename/IFindSymbolService.cs +++ b/src/Workspaces.Core/Rename/IFindSymbolService.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/Workspaces.Core/Rename/LocalSymbolComparer.cs b/src/Workspaces.Core/Rename/LocalSymbolComparer.cs index 5ff1c43408..f96f8b39b9 100644 --- a/src/Workspaces.Core/Rename/LocalSymbolComparer.cs +++ b/src/Workspaces.Core/Rename/LocalSymbolComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Diagnostics; diff --git a/src/Workspaces.Core/Rename/RenameScope.cs b/src/Workspaces.Core/Rename/RenameScope.cs index adf2995762..4c3e3df15e 100644 --- a/src/Workspaces.Core/Rename/RenameScope.cs +++ b/src/Workspaces.Core/Rename/RenameScope.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Rename; diff --git a/src/Workspaces.Core/Rename/RenameScopeFilter.cs b/src/Workspaces.Core/Rename/RenameScopeFilter.cs index 42bee6e47a..d4d762e38c 100644 --- a/src/Workspaces.Core/Rename/RenameScopeFilter.cs +++ b/src/Workspaces.Core/Rename/RenameScopeFilter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Workspaces.Core/Rename/SymbolData.cs b/src/Workspaces.Core/Rename/SymbolData.cs index 6be2fe11c2..998d92b431 100644 --- a/src/Workspaces.Core/Rename/SymbolData.cs +++ b/src/Workspaces.Core/Rename/SymbolData.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using Microsoft.CodeAnalysis; diff --git a/src/Workspaces.Core/Rename/SymbolListHelpers.cs b/src/Workspaces.Core/Rename/SymbolListHelpers.cs index a407b22244..d80e9cb4cb 100644 --- a/src/Workspaces.Core/Rename/SymbolListHelpers.cs +++ b/src/Workspaces.Core/Rename/SymbolListHelpers.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Core/Rename/SymbolProvider.cs b/src/Workspaces.Core/Rename/SymbolProvider.cs index f007bfe400..033bdcec08 100644 --- a/src/Workspaces.Core/Rename/SymbolProvider.cs +++ b/src/Workspaces.Core/Rename/SymbolProvider.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Concurrent; diff --git a/src/Workspaces.Core/Rename/SymbolRenameProgress.cs b/src/Workspaces.Core/Rename/SymbolRenameProgress.cs index 3407962dd3..01ba17adc4 100644 --- a/src/Workspaces.Core/Rename/SymbolRenameProgress.cs +++ b/src/Workspaces.Core/Rename/SymbolRenameProgress.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/Workspaces.Core/Rename/SymbolRenameResult.cs b/src/Workspaces.Core/Rename/SymbolRenameResult.cs index d18e7e15ab..b0485f5169 100644 --- a/src/Workspaces.Core/Rename/SymbolRenameResult.cs +++ b/src/Workspaces.Core/Rename/SymbolRenameResult.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Rename; diff --git a/src/Workspaces.Core/Rename/SymbolRenameState.cs b/src/Workspaces.Core/Rename/SymbolRenameState.cs index 3d3054ef72..3f56ee0dfd 100644 --- a/src/Workspaces.Core/Rename/SymbolRenameState.cs +++ b/src/Workspaces.Core/Rename/SymbolRenameState.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Core/Rename/SymbolRenamer.cs b/src/Workspaces.Core/Rename/SymbolRenamer.cs index 55e4b4ec36..ef776dacc5 100644 --- a/src/Workspaces.Core/Rename/SymbolRenamer.cs +++ b/src/Workspaces.Core/Rename/SymbolRenamer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Core/Rename/SymbolRenamerOptions.cs b/src/Workspaces.Core/Rename/SymbolRenamerOptions.cs index 90fe2d749f..ed4dbafce5 100644 --- a/src/Workspaces.Core/Rename/SymbolRenamerOptions.cs +++ b/src/Workspaces.Core/Rename/SymbolRenamerOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using Microsoft.Extensions.FileSystemGlobbing; diff --git a/src/Workspaces.Core/SimpleProjectInfo.cs b/src/Workspaces.Core/SimpleProjectInfo.cs index 7305930c1b..983e42d387 100644 --- a/src/Workspaces.Core/SimpleProjectInfo.cs +++ b/src/Workspaces.Core/SimpleProjectInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using Microsoft.CodeAnalysis; diff --git a/src/Workspaces.Core/Spelling/ISpellingService.cs b/src/Workspaces.Core/Spelling/ISpellingService.cs index e93c7c7060..2a301f3040 100644 --- a/src/Workspaces.Core/Spelling/ISpellingService.cs +++ b/src/Workspaces.Core/Spelling/ISpellingService.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/Workspaces.Core/Spelling/SpellcheckAnalyzer.cs b/src/Workspaces.Core/Spelling/SpellcheckAnalyzer.cs index 52b32c8355..f5c3b0d826 100644 --- a/src/Workspaces.Core/Spelling/SpellcheckAnalyzer.cs +++ b/src/Workspaces.Core/Spelling/SpellcheckAnalyzer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Core/Spelling/SpellcheckOptions.cs b/src/Workspaces.Core/Spelling/SpellcheckOptions.cs index d1641df73a..a1205222b3 100644 --- a/src/Workspaces.Core/Spelling/SpellcheckOptions.cs +++ b/src/Workspaces.Core/Spelling/SpellcheckOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator.Spelling; diff --git a/src/Workspaces.Core/Spelling/SpellingAnalysisContext.cs b/src/Workspaces.Core/Spelling/SpellingAnalysisContext.cs index 951ceb6c4a..b200558e05 100644 --- a/src/Workspaces.Core/Spelling/SpellingAnalysisContext.cs +++ b/src/Workspaces.Core/Spelling/SpellingAnalysisContext.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Core/Spelling/SpellingDiagnostic.cs b/src/Workspaces.Core/Spelling/SpellingDiagnostic.cs index 3b3cd2ea67..c4219c61aa 100644 --- a/src/Workspaces.Core/Spelling/SpellingDiagnostic.cs +++ b/src/Workspaces.Core/Spelling/SpellingDiagnostic.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Diagnostics; diff --git a/src/Workspaces.Core/Spelling/SpellingDiagnosticComparer.cs b/src/Workspaces.Core/Spelling/SpellingDiagnosticComparer.cs index 2270ed2be1..57d2318045 100644 --- a/src/Workspaces.Core/Spelling/SpellingDiagnosticComparer.cs +++ b/src/Workspaces.Core/Spelling/SpellingDiagnosticComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections; diff --git a/src/Workspaces.Core/Spelling/SpellingFixHelpers.cs b/src/Workspaces.Core/Spelling/SpellingFixHelpers.cs index 83bf98d12f..d45bc3752a 100644 --- a/src/Workspaces.Core/Spelling/SpellingFixHelpers.cs +++ b/src/Workspaces.Core/Spelling/SpellingFixHelpers.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Core/Spelling/SpellingFixResult.cs b/src/Workspaces.Core/Spelling/SpellingFixResult.cs index 683053c4fe..eb3065f721 100644 --- a/src/Workspaces.Core/Spelling/SpellingFixResult.cs +++ b/src/Workspaces.Core/Spelling/SpellingFixResult.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Diagnostics; using Microsoft.CodeAnalysis; diff --git a/src/Workspaces.Core/Spelling/SpellingFixResultEqualityComparer.cs b/src/Workspaces.Core/Spelling/SpellingFixResultEqualityComparer.cs index 550f7b63e6..72957f28ed 100644 --- a/src/Workspaces.Core/Spelling/SpellingFixResultEqualityComparer.cs +++ b/src/Workspaces.Core/Spelling/SpellingFixResultEqualityComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Core/Spelling/SpellingScopeFilter.cs b/src/Workspaces.Core/Spelling/SpellingScopeFilter.cs index 5827f217c7..397cb685e9 100644 --- a/src/Workspaces.Core/Spelling/SpellingScopeFilter.cs +++ b/src/Workspaces.Core/Spelling/SpellingScopeFilter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Workspaces.Core/Spelling/SpellingService.cs b/src/Workspaces.Core/Spelling/SpellingService.cs index e65773b64f..dd2343e2f9 100644 --- a/src/Workspaces.Core/Spelling/SpellingService.cs +++ b/src/Workspaces.Core/Spelling/SpellingService.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Immutable; using System.Threading; diff --git a/src/Workspaces.Core/Spelling/StringComparerUtility.cs b/src/Workspaces.Core/Spelling/StringComparerUtility.cs index c92396bcc5..84ed4bb088 100644 --- a/src/Workspaces.Core/Spelling/StringComparerUtility.cs +++ b/src/Workspaces.Core/Spelling/StringComparerUtility.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Workspaces.Core/SymbolDefinitionSortOptions.cs b/src/Workspaces.Core/SymbolDefinitionSortOptions.cs index f5ac2eb108..46753316a9 100644 --- a/src/Workspaces.Core/SymbolDefinitionSortOptions.cs +++ b/src/Workspaces.Core/SymbolDefinitionSortOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Workspaces.Core/SymbolGroup.cs b/src/Workspaces.Core/SymbolGroup.cs index 93db61b836..60f06bf285 100644 --- a/src/Workspaces.Core/SymbolGroup.cs +++ b/src/Workspaces.Core/SymbolGroup.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Roslynator; diff --git a/src/Workspaces.Core/SymbolGroupFilter.cs b/src/Workspaces.Core/SymbolGroupFilter.cs index e59a1a4a9c..100c1f51f5 100644 --- a/src/Workspaces.Core/SymbolGroupFilter.cs +++ b/src/Workspaces.Core/SymbolGroupFilter.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; diff --git a/src/Workspaces.Core/SyntaxFinder.cs b/src/Workspaces.Core/SyntaxFinder.cs index d04af4ed87..7067b1e10e 100644 --- a/src/Workspaces.Core/SyntaxFinder.cs +++ b/src/Workspaces.Core/SyntaxFinder.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Workspaces.Core/UnusedSymbolUtility.cs b/src/Workspaces.Core/UnusedSymbolUtility.cs index 95b70461b7..a39c875076 100644 --- a/src/Workspaces.Core/UnusedSymbolUtility.cs +++ b/src/Workspaces.Core/UnusedSymbolUtility.cs @@ -1,4 +1,4 @@ -// Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; using System.Collections.Immutable;