VCProjectConfigurationProperties.CommandArguments Eigenschaft

Definition

Die Argumente, die an den in angegebenen Prozess übergeben werden sollen, Command Wenn Attach ist false .

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

Eigenschaftswert

String

Die Befehlszeilenargumente, die an die Anwendung übergeben werden sollen.

Attribute

Beispiele

[Visual Basic]

Der folgende Beispielcode ändert die- CommandArguments Eigenschaft in der Entwicklungsumgebung:

' 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.CommandArguments = "test testing"  
    End Sub  
End Module  

Hinweise

Weitere Informationen zum Kompilieren und Ausführen dieses Beispiels finden Sie unter Gewusst wie: Kompilieren von Beispiel Code für die Erweiterbarkeit von Projekt Modellen .

Gilt für