将自动生成的 C# 文件添加到解决方案中
在 C++ 中,我可以自动生成一些类,然后
#include "myautoclass.cpp"
在预构建步骤中修改一个空的 cpp 文件,这些类将被编译和链接。有没有办法在 C# 中的预构建步骤中执行此操作?我用的是VS2010。谢谢。
In C++ I can autogenerate some classes and then modify an empty cpp file to
#include "myautoclass.cpp"
in the prebuild step and these classes will be compiled and linked. Is there a way to do this in C# in a prebuild step? I'm on VS2010. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
生成类(以及任何其他文件)的一种方法是使用 T4 模板。
可以在此处找到一组优秀的教程。
One way of generating classes (and any other files) is by using T4 templates.
An excellent set of tutorials can be found here.