如何让 T4MVC 重新生成 . generated.cs 文件?

发布于 2024-10-20 22:35:34 字数 170 浏览 5 评论 0原文

我向 NerdDinner DiningsController 类添加测试,当我创建执行构造函数注入所需的构造函数时,我与 T4MVC 生成的构造函数(特别是基本构造函数)发生冲突。看起来如果基本构造函数已经存在,则不会生成 - 这是真的吗?如果是这样,我需要做什么来重新生成 T4MVC 文件?

谢谢, 戴夫

I am adding tests to the NerdDinner DinnersController class, and when I create the constructors needed to do Constructor Injection I get a conflict with the T4MVC-generated constructor (specifically, the base constructor). It looks like the base constructor is not generated if one already exists -- is this true? If so, what do I need to do to re-generate the T4MVC files?

Thanks,
Dave

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

沧桑㈠ 2024-10-27 22:35:34

右键单击“解决方案资源管理器”中的 T4MVC.tt 文件,然后单击“运行自定义工具”。这将重新生成文件。

Right-click on the T4MVC.tt file in Solution Explorer, then click Run Custom Tool. This will regenerate the files.

冰葑 2024-10-27 22:35:34

https://marketplace.visualstudio.com/items?itemName=BennorMcCarthy.AutoT4MVC

单击上面的链接,或者如果它消失,请在 Visual Studio (2015) 中:

  1. 单击“工具”
  2. 单击“扩展和更新”
  3. 在右侧,搜索 AutoT4MVC
  4. 安装,然后重新启动 VS

您的模板现在应该会自动重建你建造的时间。

https://marketplace.visualstudio.com/items?itemName=BennorMcCarthy.AutoT4MVC

Click the link above, or if it disappears, in Visual Studio (2015):

  1. Click Tools
  2. Click Extensions and Updates
  3. On the right, search for AutoT4MVC
  4. Install, and restart VS

Your templates should now rebuild automatically every time you build.

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