/// <summary>
        /// Sets a <see cref="FileLinkSettings"/> to create the link of the position in the file where the issue ocurred.
        /// </summary>
        /// <param name="fileLinkSettings">Settings to create the link of the position in the file where the issue ocurred.</param>
        /// <returns>Issue Builder instance.</returns>
        public IssueBuilder WithFileLinkSettings(FileLinkSettings fileLinkSettings)
        {
            fileLinkSettings.NotNull(nameof(fileLinkSettings));

            this.fileLinkSettings = fileLinkSettings;

            return(this);
        }