简体   繁体   中英

Rename classes using Visual Studio Project Template

I have created a Visual Studio template using this link: http://msdn.microsoft.com/en-us/library/ms185301.aspx .

I am able to create a dialog where the user enters a custom message and it gets displayed:

namespace TemplateProject
{
    class WriteMessage
    {
        static void Main(string[] args)
        {
             Console.WriteLine("$custommessage$");
        }
    }
}

What I want to do it allow the user to rename the class names so I want to do something like:

在此处输入图片说明

But you see I'm getting errors of "Unexpected character $"

How can I do this?

EDIT

I see from this link: http://msdn.microsoft.com/en-us/library/eehb4faa(v=vs.110).aspx that

To enable parameter substitution in templates: In the .vstemplate file of the template, locate the ProjectItem element that corresponds to the item for which you want to enable parameter replacement. Set the ReplaceParameters attribute of the ProjectItem element to true.

BUT above I have not yet generated the template yet as I am still defining the classes. I understnad that the above step needs to be done in order to get the parameter substitution enabled for a File-->New Project scenario.

It looks like you have your template file as a cs file, which is causing Visual Studio to attempt to build it directly.

From what I can tell you should create a functioning Project, export it, and then modify the resulting template to add any replacements you need.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM