在 COMReferences 上使用 MSBuild 条件
如何在 *.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您的策略应该有效,但如果不行,您也可以将条件移动到包含 ComReferences 的 ItemGroup。
I think your strategy should work, but if not, you could also move the Condition to the ItemGroup that encloses the ComReferences.