VCProjectConfigurationProperties.RemoteCommand Свойство

Определение

Если свойство Attach имеет значение false и в свойстве Remote задана удаленная отладка, при вызове отладчика запускается исполняемый файл. Если свойство Attach имеет значение true и в свойстве Remote задана удаленная отладка, то свойство RemoteCommand указывает процесс, к которому прикрепляется процесс отладки при вызове отладчика.

public:
 property System::String ^ RemoteCommand { System::String ^ get(); void set(System::String ^ value); };
public:
 property Platform::String ^ RemoteCommand { Platform::String ^ get(); void set(Platform::String ^ value); };
[System.Runtime.InteropServices.DispId(2326)]
public string RemoteCommand { [System.Runtime.InteropServices.DispId(2326)] get; [System.Runtime.InteropServices.DispId(2326)] set; }
[<System.Runtime.InteropServices.DispId(2326)>]
[<get: System.Runtime.InteropServices.DispId(2326)>]
[<set: System.Runtime.InteropServices.DispId(2326)>]
member this.RemoteCommand : string with get, set
Public Property RemoteCommand As String

Значение свойства

String

Процесс, к которому должен быть присоединен процесс отладки.

Атрибуты

Примеры

[Visual Basic]

В следующем примере кода изменяется RemoteCommand свойство в среде разработки:

' 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  

Комментарии

Сведения о том, как скомпилировать и запустить этот пример, см. в разделе как скомпилировать пример кода для расширения модели проекта .

Применяется к