Skip to content

Commit 13b268c

Browse files
pzygielommazas
andauthored
Fixed wrong excludes management (#444)
Co-authored-by: mmazas <[email protected]>
1 parent 92bff9c commit 13b268c

File tree

1 file changed

+1
-1
lines changed
  • plexus-compilers/plexus-compiler-csharp/src/main/java/org/codehaus/plexus/compiler/csharp

1 file changed

+1
-1
lines changed

plexus-compilers/plexus-compiler-csharp/src/main/java/org/codehaus/plexus/compiler/csharp/CSharpCompiler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -759,7 +759,7 @@ protected static Set<String> getSourceFilesForSourceRoot(CompilerConfiguration c
759759

760760
if (excludes != null && !excludes.isEmpty()) {
761761
String[] exclStrs = excludes.toArray(new String[excludes.size()]);
762-
scanner.setIncludes(exclStrs);
762+
scanner.setExcludes(exclStrs);
763763
}
764764

765765
scanner.scan();

0 commit comments

Comments
 (0)