I am having an project in dot net 2.0 framework build. I wanted to change it's assembly copyright attribute while building the application. For that I have used T4 template as per the guidance by below two links
- Dynamically display current year in assembly info
- Programmatically change the AssemblyVersion and AssemblyFileVersion attributes
I tried changing the code but it doesn't have any effect at all.[![
<#@ template language="VB" #>
<#@ output extension=".vb" #>
Imports System
Imports System.Reflection
<Assembly: AssemblyCopyright("Test Assembly Copyright <#=DateTime.Now#>")>