Get/set copyright for a project
Under project properties, package, general, copyright add the following and modify as needed.
2024-$([System.DateTime]::Now.Year)
Or add the following directly into the project file.
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<LangVersion>preview</LangVersion>
<Copyright>2024-$([System.DateTime]::Now.Year) Karen Payne</Copyright>
</PropertyGroup>Use Special.GetCopyright() to read the copyright.