如何替换 razor cshtml 页面中的 Visual Studio 模板变量?
我有一个自定义的 Visual Studio 2010 mvc3 项目,我们在我们的商店中使用它来创建新项目。当用实际项目名称替换命名空间时,一切正常,直到我到达 .cshtml 页面。有没有办法强制模板引擎将变量传递到页面?
我有类似以下内容:
<title>@$safeprojectname$.Constants.applicationName</title>
有没有一种方法可以设置它,以便开始新项目的人不必替换任何文本?
I have a custom visual studio 2010 mvc3 project that we use in our shop for new projects. When replacing namespaces with the actual project name, everything works great until I get to my .cshtml pages. Is there a way to force the template engine to pass the variables in to the page?
I have something like the following:
<title>@$safeprojectname$.Constants.applicationName</title>
Is there a way I can set this up such that someone starting a new project doesn't have to replace any text?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
进入项目模板的 vstemplate 文件,并确保每个使用参数的
ProjectItem
条目都设置了ReplaceParameters="true"
属性。Go into your project template's vstemplate file and make sure that every
ProjectItem
entry that uses parameters has theReplaceParameters="true"
attribute set.