BinaryLogger.AdditionalFilePaths Property

Definition

Gets or sets additional output file paths. When set, the binlog will be copied to all these paths after the build completes. The primary FilePath will be used as the temporary write location.

public:
 property System::Collections::Generic::IReadOnlyList<System::String ^> ^ AdditionalFilePaths { System::Collections::Generic::IReadOnlyList<System::String ^> ^ get(); void set(System::Collections::Generic::IReadOnlyList<System::String ^> ^ value); };
public System.Collections.Generic.IReadOnlyList<string> AdditionalFilePaths { get; init; }
member this.AdditionalFilePaths : System.Collections.Generic.IReadOnlyList<string> with get, set
Public Property AdditionalFilePaths As IReadOnlyList(Of String)

Property Value

Remarks

This property is intended for internal use by MSBuild command-line processing. It should not be set by external code or logger implementations. Use multiple logger instances with different Parameters instead.

Applies to