在 COMReferences 上使用 MSBuild 条件

发布于 2024-07-29 18:08:26 字数 468 浏览 4 评论 0原文

如何在 *.csproj 中为 COMReference 指定 条件文件? 以下似乎不起作用:

<COMReference Include="SomeComLib" Condition=" '$(Configuration)' == 'Debug' ">
    ...
</COMReference>

我在 Visual Studio 2008 中的 C# 项目中有一些 COM 引用。我希望它们在我处于调试状态时自动使用非隔离模​​式,但在发布版本时自动切换到隔离模式建造。 我认为可以通过在 *.csproj 文件中指定两个不同的 COMReferences 来实现此目的,这两个 COMReferences 是根据条件选择的。

How can I specify a Condition for a COMReference in my *.csproj file? The following does not appear to work:

<COMReference Include="SomeComLib" Condition=" '$(Configuration)' == 'Debug' ">
    ...
</COMReference>

I have some COM references in a C# project in Visual Studio 2008. I would like them to automatically use non-isolation mode when I am in Debug, but automatically switch to Isolation mode when I make a Release build. I thought I could achieve this by specifying two different COMReferences in my *.csproj file, which are selected based on the Condition.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

呆萌少年 2024-08-05 18:08:26

我认为您的策略应该有效,但如果不行,您也可以将条件移动到包含 ComReferences 的 ItemGroup。

I think your strategy should work, but if not, you could also move the Condition to the ItemGroup that encloses the ComReferences.

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