Condividi tramite


Proprietà VCDebugSettings.RemoteCommand

se Attach è false e Remote specifica il debug remoto, gli inizio del file eseguibile quando si richiama il debugger.se Attach è true e Remote specifica il debug remoto, RemoteCommand la proprietà specifica il processo a cui collegare il debug quando si richiama il debugger.

Spazio dei nomi:  Microsoft.VisualStudio.VCProjectEngine
Assembly:  Microsoft.VisualStudio.VCProjectEngine (in Microsoft.VisualStudio.VCProjectEngine.dll)

Sintassi

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

Valore proprietà

Tipo: System.String
Il processo a cui collegare il debug quando si richiama il debugger.

Note

vedere Procedura: compilare codice di esempio per l'Extensibility del modello di progetto per informazioni su come compilare ed eseguire l'esempio.

Esempi

Nell'esempio seguente viene modificato RemoteCommand proprietà nell'ambiente di sviluppo (IDE) integrato (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.Remote = RemoteDebuggerType.DbgRemote
        tool.RemoteCommand = "test.exe"
    End Sub
End Module

Sicurezza di .NET Framework

Vedere anche

Riferimenti

VCDebugSettings Interfaccia

Spazio dei nomi Microsoft.VisualStudio.VCProjectEngine