Visual Studio:自定义构建规则 - 每个解决方案?

发布于 2024-08-22 06:06:18 字数 267 浏览 4 评论 0原文

我需要为项目中的文件定义自定义构建规则。 然而,对于不同的解决方案,规则可能不同(更准确地说,对于并行开发分支中的相同解决方案)。

我有两个问题:

  1. 能否在与解决方案相关的位置指定 .rules 文件?这样我就能够为每个开发分支创建规则。

  2. 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:

  1. 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.

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

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

发布评论

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

评论(1

笑着哭最痛 2024-08-29 06:06:18

.vcproj 文件将包含以下子句:

 <ToolFiles>
    <ToolFile
      RelativePath="..\my.rules"
    />
 </ToolFiles>

您可以使用 $(SolutionDir) 自定义 .rules 文件的位置,如下所示:

 <ToolFiles>
    <ToolFile
      RelativePath="$(SolutionDir)..\..\..\my.rules"
    />
 </ToolFiles>

.vcproj file will contain the following clause:

 <ToolFiles>
    <ToolFile
      RelativePath="..\my.rules"
    />
 </ToolFiles>

You can use $(SolutionDir) to customize placement of the .rules file, like this:

 <ToolFiles>
    <ToolFile
      RelativePath="$(SolutionDir)..\..\..\my.rules"
    />
 </ToolFiles>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文