有没有办法大写Visual Studio项目模板参数?
例如,将$safeprojectname$
更改为大写。
答案 0 :(得分:0)
您可以在template wizard extension.方法
中撰写RunStarted你得到一个包含标准参数列表的字典,应该替换为
Dictionary<string, string> replacementsDictionary
你现在可以翻看字典并自己做ToUpper或其他任何事情:
foreach (var key in replacementsDictionary.Keys)
{
replacementsDictionary[key] = replacementsDictionary[key].ToUpper();
}