Skip to content

Commit cbf3d88

Browse files
committed
Add "2018-Year" to StringBuilderExtensions
1 parent e7b5d35 commit cbf3d88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Files.Core.SourceGenerator/Extensions/StringBuilderExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ internal static StringBuilder AppendAutoGeneratedHeader(this StringBuilder sb, s
3030
/// <returns>The <see cref="StringBuilder"/> instance with the appended license header.</returns>
3131
internal static StringBuilder AppendLicenceHeader(this StringBuilder sb)
3232
{
33-
return sb.AppendLine($"// Copyright (c) {DateTime.Now.Year} Files Community")
33+
return sb.AppendLine($"// Copyright (c) 2018-{DateTime.Now.Year} Files Community")
3434
.AppendLine("// Licensed under the MIT License.");
3535
}
3636

0 commit comments

Comments
 (0)