/// <summary>
 /// Enables the binary logger with the specified log file name and no imports.
 /// </summary>
 /// <param name="settings">The settings.</param>
 /// <param name="fileName">The log file name.</param>
 /// <returns>The same <see cref="MSBuildSettings"/> instance so that multiple calls can be chained.</returns>
 public static MSBuildSettings EnableBinaryLogger(this MSBuildSettings settings, string fileName)
 {
     return(EnableBinaryLogger(settings, fileName, MSBuildBinaryLogImports.Unspecified));
 }
 /// <summary>
 /// Adds a file logger with all the default settings.
 /// Each file logger will be declared in the order added.
 /// The first file logger will match up to the /fl parameter.
 /// The next nine (max) file loggers will match up to the /fl1 through /fl9 respectively.
 /// </summary>
 /// <param name="settings">The settings.</param>
 /// <returns>The same <see cref="MSBuildSettings"/> instance so that multiple calls can be chained.</returns>
 public static MSBuildSettings AddFileLogger(this MSBuildSettings settings)
 {
     return(AddFileLogger(settings, new MSBuildFileLogger()));
 }