Visual Studio:自定义构建规则 - 每个解决方案?
我需要为项目中的文件定义自定义构建规则。 然而,对于不同的解决方案,规则可能不同(更准确地说,对于并行开发分支中的相同解决方案)。
我有两个问题:
能否在与解决方案相关的位置指定 .rules 文件?这样我就能够为每个开发分支创建规则。
MSDN 说自定义规则是可继承的,类似于属性 (vsprops)。如何才能做到这一点?在哪里指定继承?
谢谢,
吉尔·摩西。
I need to define a custom build rule for files in my projects.
However the rule may be different for different solutions (more percisely, for the same solution in a parallel dev branch).
I have two questions:
Can a .rules file be specified in a location relative to the solution? That way I'd be able to create rules per development branch.
MSDN says that the custom rule is inheritable similarly to the properties (vsprops). How can that be achieved? Where do I specify the inheritance?
Thanks,
Gil Moses.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.vcproj 文件将包含以下子句:
您可以使用 $(SolutionDir) 自定义 .rules 文件的位置,如下所示:
.vcproj file will contain the following clause:
You can use $(SolutionDir) to customize placement of the .rules file, like this: