如何让 T4MVC 重新生成 . generated.cs 文件?
我向 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
右键单击“解决方案资源管理器”中的
T4MVC.tt
文件,然后单击“运行自定义工具”。这将重新生成文件。Right-click on the
T4MVC.tt
file in Solution Explorer, then click Run Custom Tool. This will regenerate the files.https://marketplace.visualstudio.com/items?itemName=BennorMcCarthy.AutoT4MVC
单击上面的链接,或者如果它消失,请在 Visual Studio (2015) 中:
AutoT4MVC
您的模板现在应该会自动重建你建造的时间。
https://marketplace.visualstudio.com/items?itemName=BennorMcCarthy.AutoT4MVC
Click the link above, or if it disappears, in Visual Studio (2015):
AutoT4MVC
Your templates should now rebuild automatically every time you build.