共用方式為


VCCustomBuildTool.ToolKind 屬性

取得這種工具的名稱。

命名空間:  Microsoft.VisualStudio.VCProjectEngine
組件:  Microsoft.VisualStudio.VCProjectEngine (在 Microsoft.VisualStudio.VCProjectEngine.dll 中)

語法

'宣告
ReadOnly Property ToolKind As String
string ToolKind { get; }
property String^ ToolKind {
    String^ get ();
}
abstract ToolKind : string with get
function get ToolKind () : String

屬性值

型別:System.String
字串,表示這種工具的名稱。

備註

請參閱HOW TO:編譯專案模型擴充性的範例程式碼如需如何編譯及執行這個範例。

範例

' 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
      Dim msg As String
      prj = DTE.Solution.Projects.Item(1).Object
      cfgs = prj.Configurations
      cfg = cfgs.Item(1)
      tool = cfg.Tools("VCAlinkTool")
      msg += "Tool kind: " & tool.ToolKind & vbCr
      msg += "Tool name: " & tool.ToolName & vbCr
      msg += "Tool path: " & tool.ToolPath
      MsgBox(msg)
   End Sub
End Module

.NET Framework 安全性

請參閱

參考

VCCustomBuildTool 介面

Microsoft.VisualStudio.VCProjectEngine 命名空間