From 00ea77fa7e88318372005184453ef44afd4281e5 Mon Sep 17 00:00:00 2001 From: Koji Hasegawa Date: Sat, 16 Dec 2023 03:15:56 +0900 Subject: [PATCH] Fix header template variables see: https://youtrack.jetbrains.com/issue/RIDER-102981/File-Header-Template-variables-no-longer-being-replaced --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 7b343a3..c739895 100644 --- a/.editorconfig +++ b/.editorconfig @@ -145,7 +145,7 @@ dotnet_naming_symbols.all_members.applicable_kinds = * dotnet_naming_style.pascal_case_style.capitalization = pascal_case -file_header_template = Copyright (c) 2021-$CURRENT_YEAR$ Koji Hasegawa.\nThis software is released under the MIT License. +file_header_template = Copyright (c) 2021-${CurrentDate.Year} Koji Hasegawa.\nThis software is released under the MIT License. # RS0016: Only enable if API files are present dotnet_public_api_analyzer.require_api_files = true