Uppercase Visual Studio 2013 project template $itemname$ -


is there way uppercase visual studio project template parameters?

for example change $safeprojectname$ uppercase.

you can write template wizard extension. in runstarted method

you dictionary list of standard parameters should replaced

dictionary<string, string> replacementsdictionary 

you can go on dictionary , toupper or else yourself:

foreach (var key in replacementsdictionary.keys) {     replacementsdictionary[key] = replacementsdictionary[key].toupper(); } 

Comments