在 MSBuild 上使用 LINK 任务时指定多个 MergeSection 值

发布于 2024-10-10 01:04:07 字数 376 浏览 2 评论 0原文

是否可以为 MSBuild LINK 任务指定多个 MergeSection 值? (MergeSection 参数与 link.exe 的 /merge 参数相同) http://msdn.microsoft.com/en-us/library/ee862471.aspx

调用 link.exe 时,您可以指定多个 /merge 值,但这对于 MergeSection 参数来说似乎不可能。

到目前为止,我认为实现此功能的唯一方法是使用 AddtionalOptions 参数,但我希望有更好的方法来实现此参数。

谢谢

Is there anyway to specify more than one MergeSection value for the MSBuild LINK task? (The MergeSection param is the same as the /merge param for link.exe)
http://msdn.microsoft.com/en-us/library/ee862471.aspx

When calling link.exe you can specify more than one /merge value, but that doesn't seem possible with the MergeSection parameter.

So far the only way I can see to make this work is by using the AddtionalOptions param, but I'm hoping there's a better way to implement this parameter.

Thanks

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

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

发布评论

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

评论(1

御守 2024-10-17 01:04:07

我想你可能必须使用AdditionalOptions。

在 Link 任务中,MergeSections 属性是一个字符串值,而不是数组,因此只能设置一个字符串。 Link.exe 似乎不允许您在一个命令行参数中传递多个对,您必须为每一对指定一个单独的 MERGE 命令行参数。 Visual Studio 属性页仅允许 MergeSections 属性使用单个字符串。

I think you may have to use AdditionalOptions.

In the Link task the MergeSections property is a string value, not an array, so you can only set one string. Link.exe does not seem to allow you to pass multiple pairs in one command line parameter, you must specify a separate MERGE command line parameter for each pair. The Visual Studio property page only allows a single string for the MergeSections property.

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