diff --git a/src/Cake.Common/Tools/DupFinder/DupFinderAliases.cs b/src/Cake.Common/Tools/DupFinder/DupFinderAliases.cs index e1e5539aa2..80bc4d9f98 100644 --- a/src/Cake.Common/Tools/DupFinder/DupFinderAliases.cs +++ b/src/Cake.Common/Tools/DupFinder/DupFinderAliases.cs @@ -48,15 +48,15 @@ public static void DupFinder(this ICakeContext context, FilePath file) /// DupFinder("./src/MySolution.sln", new DupFinderSettings { /// ShowStats = true, /// ShowText = true, - /// ExcludePattern = new String[] - /// { - /// rootDirectoryPath + "/**/*Designer.cs", + /// ExcludePattern = new String[] + /// { + /// rootDirectoryPath + "/**/*Designer.cs", /// }, /// OutputFile = resharperReportsDirectory + File("dupfinder-output.xml"), /// ThrowExceptionOnFindingDuplicates = true /// }); /// - /// + /// [CakeMethodAlias] [CakeAliasCategory("DupFinder")] public static void DupFinder(this ICakeContext context, FilePath file, DupFinderSettings settings) @@ -100,15 +100,15 @@ public static void DupFinder(this ICakeContext context, IEnumerable fi /// DupFinder(projects, new DupFinderSettings { /// ShowStats = true, /// ShowText = true, - /// ExcludePattern = new String[] - /// { - /// rootDirectoryPath + "/**/*Designer.cs", + /// ExcludePattern = new String[] + /// { + /// rootDirectoryPath + "/**/*Designer.cs", /// }, /// OutputFile = resharperReportsDirectory + File("dupfinder-output.xml"), /// ThrowExceptionOnFindingDuplicates = true /// }); /// - /// + /// [CakeMethodAlias] [CakeAliasCategory("DupFinder")] public static void DupFinder(this ICakeContext context, IEnumerable files, DupFinderSettings settings) @@ -155,7 +155,7 @@ public static void DupFinder(this ICakeContext context, string pattern) /// OutputFile = resharperReportsDirectory + File("dupfinder-output.xml"), /// }); /// - /// + /// [CakeMethodAlias] [CakeAliasCategory("DupFinder")] public static void DupFinder(this ICakeContext context, string pattern, DupFinderSettings settings)