如何在预编译步骤中自动将文件添加到 Visual Studio 项目?
我有一个 perl 脚本来将一些文件复制到我的项目目录中。我们项目的预编译步骤将运行该脚本。但问题是复制的文件不会自动添加到项目依赖项中。有没有办法自动添加它们?
I have a perl script to copy some files into my project directory . The pre-compile step of our project will run the script. But the problem is that copied files are not add to the project dependency automatically . Is there a way to add them by automation ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
脚本的复制和运行可以通过使用预构建和后构建宏来完成。 DTE 还提供诸如 BuildEvents 之类的东西。请查看此处。
The copying and running of the scripts can be done by using the Pre Build and Post Build macros. Also the DTE provides things such as BuildEvents. Take a look here.