VCALinkTool.OutputBaseFileName 属性
获取名称 (,但不是位置) 生成的附属资源 DLL 还是。
命名空间: Microsoft.VisualStudio.VCProjectEngine
程序集: Microsoft.VisualStudio.VCProjectEngine(在 Microsoft.VisualStudio.VCProjectEngine.dll 中)
语法
声明
ReadOnly Property OutputBaseFileName As String
string OutputBaseFileName { get; }
property String^ OutputBaseFileName {
String^ get ();
}
abstract OutputBaseFileName : string with get
function get OutputBaseFileName () : String
属性值
类型:System.String
生成的附属资源 DLL 的名称。
备注
公共语言运行时,需要附属资源具有相同的名称,按其内容区分。 例如,法语资源将具有指定名称此处,并在子目录名为 “fr”在主输出所在的目录下。 因此,,即使已生成,的多个附属 DLL OutputBaseFileName 返回的名称始终是一个唯一的名称。
有关如何编译和运行此示例的信息,请参见如何:编译项目模型扩展性示例代码。
示例
' Add a reference to Microsoft.VisualStudio.VCProjectEngine and have a
' Visual C++ project loaded before running this example.
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 VCALinkTool
prj = DTE.Solution.Projects.Item(1).Object
cfgs = prj.Configurations
cfg = cfgs.Item(1)
tool = cfg.Tools("VCALinkTool")
MsgBox("Output base file name: " & tool.OutputBaseFileName)
End Sub
End Module
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。