VCLinkerTool.MergeSections 属性

导致链接器将“源”区合并到“目标”区;如果“目标”区不存在,则“源”区重命名为“目标”区。

命名空间:  Microsoft.VisualStudio.VCProjectEngine
程序集:  Microsoft.VisualStudio.VCProjectEngine(在 Microsoft.VisualStudio.VCProjectEngine.dll 中)

语法

声明
Property MergeSections As String
string MergeSections { get; set; }
property String^ MergeSections {
    String^ get ();
    void set (String^ value);
}
abstract MergeSections : string with get, set
function get MergeSections () : String 
function set MergeSections (value : String)

属性值

类型:String
获取“目标”区。

备注

MergeSections 公开 /MERGE(合并节) 链接器选项的功能。

有关如何编译和运行此示例的信息,请参见 如何:编译项目模型扩展性示例代码

示例

下面的示例在集成开发环境 (IDE) 中修改 MergeSections 属性:

' add reference to Microsoft.VisualStudio.VCProjectEngine
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine

Public Module Module1
  Sub Test()
    Dim prj As VCProject
    Dim cfgs, tools As IVCCollection
    Dim cfg As VCConfiguration
    Dim tool As VCLinkerTool
    prj = DTE.Solution.Projects.Item(1).Object
    cfgs = prj.Configurations
    cfg = cfgs.Item(1)
    tool = cfg.Tools("VCLinkerTool")
    tool.MergeSections = ".rdata=.text"
  End Sub
End Module

.NET Framework 安全性

请参阅

参考

VCLinkerTool 接口

Microsoft.VisualStudio.VCProjectEngine 命名空间

其他资源

/MERGE(合并节)