将自动生成的 C# 文件添加到解决方案中

发布于 2024-11-09 20:35:27 字数 161 浏览 0 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(1

狼性发作 2024-11-16 20:35:29

生成类(以及任何其他文件)的一种方法是使用 T4 模板

可以在此处找到一组优秀的教程

One way of generating classes (and any other files) is by using T4 templates.

An excellent set of tutorials can be found here.

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