ToolTask.EchoOff Property

Definition

When set to true, it passes /Q to the cmd.exe command line such that the command line does not get echo-ed on stdout

public:
 property bool EchoOff { bool get(); void set(bool value); };
public bool EchoOff { get; set; }
public bool EchoOff { [System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")] get; [System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")] set; }
member this.EchoOff : bool with get, set
[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]
[<set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]
member this.EchoOff : bool with get, set
Public Property EchoOff As Boolean

Property Value

true if command line echo is off; otherwise, false.

Attributes

Remarks

MSBuild turns off command line echoing by passing /Q on the cmd.exe command line.

Applies to