共用方式為


VCDebugSettings.Command 屬性

如果 Remote 指定本機偵錯且 Attach 為 false,則 Command 屬性會指定可執行檔在您叫用偵錯工具時啟動。 如果 Attach 為 true 且 Remote 指定遠端偵錯,則 Command 屬性會指定當您叫用偵錯工具時偵錯處理序應附加至的處理序。

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

語法

'宣告
Property Command As String
string Command { get; set; }
property String^ Command {
    String^ get ();
    void set (String^ value);
}
abstract Command : string with get, set
function get Command () : String
function set Command (value : String)

屬性值

型別:System.String
不是在叫用偵錯工具時啟動的可執行檔,就是偵錯處理序應附加至的處理序。

備註

如需詳細資訊,請參閱 C++ 偵錯組態的專案設定。 如需這個範例的編譯與執行等詳細資訊,請參閱 HOW TO:編譯專案模型擴充性的範例程式碼

範例

下列範例會修改Command在整合式的開發環境 (IDE) 中的屬性:

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

Public Module Module1
    Sub Test()
        Dim mystring As String
        Dim prj As VCProject
        Dim cfgs, tools As IVCCollection
        Dim cfg As VCConfiguration
        Dim tool As VCDebugSettings
        prj = DTE.Solution.Projects.Item(1).Object
        cfgs = prj.Configurations
        cfg = cfgs.Item(1)
        tool = cfg.DebugSettings
        tool.Command = "test.exe"
    End Sub
End Module

.NET Framework 安全性

請參閱

參考

VCDebugSettings 介面

Microsoft.VisualStudio.VCProjectEngine 命名空間