Share via


VCLinkerTool.MapFileName 属性

获取或设置映射文件的名称。

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

语法

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

属性值

类型:String
一个表示映射文件名称的字符串。

备注

MapFileName 公开 /MAP(生成映射文件) 链接器选项的功能。

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

示例

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

' 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.GenerateMapFile = True
        tool.MapFileName = "my.map"
    End Sub
End Module

.NET Framework 安全性

请参阅

参考

VCLinkerTool 接口

Microsoft.VisualStudio.VCProjectEngine 命名空间

其他资源

/MAP(生成映射文件)

/MAPINFO(包含映射文件中的信息)