如何替换 razor cshtml 页面中的 Visual Studio 模板变量?

发布于 2024-10-26 06:34:37 字数 276 浏览 1 评论 0原文

我有一个自定义的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浪推晚风 2024-11-02 06:34:37

进入项目模板的 vstemplate 文件,并确保每个使用参数的 ProjectItem 条目都设置了 ReplaceParameters="true" 属性。

Go into your project template's vstemplate file and make sure that every ProjectItem entry that uses parameters has the ReplaceParameters="true" attribute set.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文