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

Popular posts from this blog

OpenCV OpenCL: Convert Mat to Bitmap in JNI Layer for Android -

python - How to remove the Xframe Options header in django? -

android - org.xmlpull.v1.XmlPullParserException: expected: START_TAG {http://schemas.xmlsoap.org/soap/envelope/}Envelope -