MSBuild.TargetAndPropertyListSeparators Property

Definition

Unescape Targets, Properties (including Properties and AdditionalProperties as Project item metadata) will be un-escaped before processing. e.g. %3B (an escaped ';') in the string for any of them will be treated as if it were an un-escaped ';'

This API supports the product infrastructure and is not intended to be used directly from your code.

public:
 property cli::array <System::String ^> ^ TargetAndPropertyListSeparators { cli::array <System::String ^> ^ get(); void set(cli::array <System::String ^> ^ value); };
public string[] TargetAndPropertyListSeparators { get; set; }
public string[] TargetAndPropertyListSeparators { [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.TargetAndPropertyListSeparators : string[] 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.TargetAndPropertyListSeparators : string[] with get, set
Public Property TargetAndPropertyListSeparators As String()

Property Value

String[]

The escape characters to be unescaped from the specified Properties and Targets.

Attributes

Remarks

This property has to be set to a value other than null for the MSBuild task to unescape properties and targets.

Applies to