在 MSBuild 上使用 LINK 任务时指定多个 MergeSection 值
是否可以为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想你可能必须使用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.