Example #1
0
        /// <inheritdoc />
        public override string ToString()
        {
            var stringBuilder = new StringBuilder();

            stringBuilder.AppendLine("{");
            stringBuilder.AppendLine($"\t\"Includes\": [ {string.Join(",", Includes.Select(x => $"\"{x}\""))} ], ");
            stringBuilder.AppendLine($"\t\"Excludes\": [ {string.Join(",", Excludes.Select(x => $"\"{x}\""))} ], ");
            stringBuilder.AppendLine($"\t\"CaseSensitive\": {CaseSensitive}, ");
            stringBuilder.AppendLine($"\t\"BasePath\": {BasePath.FullPath}");
            stringBuilder.AppendLine("}");
            return(stringBuilder.ToString());
        }