diff --git a/ChangeLog.md b/ChangeLog.md index b8bce4af7f..f0e5893172 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -14,7 +14,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), [#1210](https://github.com/dotnet/roslynator/pull/1210)). -- Migrate to .NET Foundation ([#1206](https://github.com/dotnet/roslynator/pull/1206), [#1207](https://github.com/dotnet/roslynator/pull/1207)). +- Migrate to .NET Foundation ([#1206](https://github.com/dotnet/roslynator/pull/1206), [#1207](https://github.com/dotnet/roslynator/pull/1207), [#1219](https://github.com/dotnet/roslynator/pull/1219)). - Bump Roslyn to 4.7.0 ([#1218](https://github.com/dotnet/roslynator/pull/1218)). - Applies to CLI and testing library. diff --git a/src/Analyzers/LICENSE.txt b/src/Analyzers/LICENSE.txt index 6927819540..cc3de997ec 100644 --- a/src/Analyzers/LICENSE.txt +++ b/src/Analyzers/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) Josef Pihrt. All rights reserved. +Copyright (c) .NET Foundation and Contributors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use these files except in compliance with the License. You may obtain a copy of the diff --git a/src/CodeAnalysis.Analyzers/LICENSE.txt b/src/CodeAnalysis.Analyzers/LICENSE.txt index 6927819540..cc3de997ec 100644 --- a/src/CodeAnalysis.Analyzers/LICENSE.txt +++ b/src/CodeAnalysis.Analyzers/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) Josef Pihrt. All rights reserved. +Copyright (c) .NET Foundation and Contributors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use these files except in compliance with the License. You may obtain a copy of the diff --git a/src/Directory.Build.props b/src/Directory.Build.props index 90012aee15..0b48c0dd40 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props @@ -5,7 +5,7 @@ true $(MSBuildThisFileDirectory)Roslynator.snk Josef Pihrt - Copyright (c) 2016-2023 Josef Pihrt + Copyright (c) .NET Foundation and Contributors true 0024000004800000940000000602000000240000525341310004000001000100d348e1a51bc190259aed17cfe132736241fef462de45a5de6c881c7f9d705073c7a2a08ba5ae493c7e878fe5f3cf7909e89045cca696422f03b284b147daf6b93c47bc53dd61ceeae60f73149d183032f029761d0d59aab49a26be4f6af71cd8194ace937642bdcb515f07530096122e97cfe6c8549a843530f71c24c7e3dab8 false diff --git a/src/Formatting.Analyzers/LICENSE.txt b/src/Formatting.Analyzers/LICENSE.txt index 6927819540..cc3de997ec 100644 --- a/src/Formatting.Analyzers/LICENSE.txt +++ b/src/Formatting.Analyzers/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) Josef Pihrt. All rights reserved. +Copyright (c) .NET Foundation and Contributors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use these files except in compliance with the License. You may obtain a copy of the diff --git a/src/Tools/CodeGeneration/CodeGenerationHelpers.cs b/src/Tools/CodeGeneration/CodeGenerationHelpers.cs index 0860b437ea..9b42b19279 100644 --- a/src/Tools/CodeGeneration/CodeGenerationHelpers.cs +++ b/src/Tools/CodeGeneration/CodeGenerationHelpers.cs @@ -12,7 +12,7 @@ namespace Roslynator.CodeGeneration; public static class CodeGenerationHelpers { - public const string CopyrightBanner = "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."; + public const string CopyrightBanner = "Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information."; public const string AutoGeneratedTag = ""; diff --git a/src/Tools/CodeGenerator/Program.cs b/src/Tools/CodeGenerator/Program.cs index a9f9bc57cd..db4002e844 100644 --- a/src/Tools/CodeGenerator/Program.cs +++ b/src/Tools/CodeGenerator/Program.cs @@ -164,7 +164,7 @@ void WriteCompilationUnit( CodeGenerationHelpers.WriteCompilationUnit( path: Path.Combine(rootPath, path), compilationUnit: compilationUnit, - banner: "Copyright (c) Josef Pihrt and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.", + banner: "Copyright (c) .NET Foundation and Contributors. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.", autoGenerated: autoGenerated, normalizeWhitespace: normalizeWhitespace, fileMustExist: fileMustExist,