I would like to create a custom parameter for a vstemplate containing some C# code. Basically I want to put DateTime.Now.ToString("yyyyMMddHHmmssfff")
in my template (the formatted date, not the code). Basically I want to achieve the equivalent of the T4 below in my item template.
[Migration(<#= DateTime.Now.ToString("yyyyMMddHHmmssfff") #>)]
public class $fileinputname$ : Migration
Is this possible? Or is there a simple way to use a T4 as the template file for my vstemplate item?