No difference, but this seems to fix it:
<Property Name="sonar.cpd.exclusions">
**/GlobalSuppressions.cs,
<!-- These extensions are purely for consumers of the package and will be duplicate by design -->
**/Extensions/Use*Extensions.cs,
<!-- This converter is different but very similar to the ConvertibleConverter, this is by design -->
*/FluentSerializer.Xml/Converting/Converters/FormattableConverter.cs
</Property>
Which has the following log:
2023-01-09T19:11:52.6025828Z INFO: Project configuration:
2023-01-09T19:11:52.6027911Z INFO: Excluded sources: **/build-wrapper-dump.json, **/GlobalSuppressions.cs, FluentSerializer.Json.Converter.DefaultJson/**/*.cs, FluentSerializer.Xml.Converter.DefaultXml/**/*.cs
2023-01-09T19:11:52.6032048Z INFO: Excluded tests: **/GlobalSuppressions.cs
2023-01-09T19:11:52.6033450Z INFO: Excluded sources for duplication: **/GlobalSuppressions.cs, **/Extensions/Use*Extensions.cs, FluentSerializer.Xml/Converting/Converters/FormattableConverter.cs
2023-01-09T19:11:52.7539747Z INFO: Indexing files of module 'FluentSerializer.Json.Converter.DefaultJson'
Which is strange because according to the sonarcloud UI the path in the scan is: FluentSerializer.Xml/Converting/Converters/FormattableConverter.cs
next to the copy icon.
In fact, I’ve used the copy icon there.
Technically the path is ./src/FluentSerializer.Xml/Converting/Converters/FormattableConverter.cs
however, I’m aware the sonarscanner scopes to ./src/
on dotnet by default so it shouldn’t matter.
Sadly, this doesn’t work since the wildcard path doesn’t match like this.
Apart from all of that, it just appears that adding a path without a wildcard breaks the config.
For completion’s sake I also tried this:
<Property Name="sonar.cpd.exclusions">
**/GlobalSuppressions.cs,
<!-- These extensions are purely for consumers of the package and will be duplicate by design -->
**/Extensions/Use*Extensions.cs,
<!-- This converter is different but very similar to the ConvertibleConverter, this is by design -->
./src/FluentSerializer.Xml/Converting/Converters/FormattableConverter.cs
</Property>
This appears to also only use the last line:
2023-01-09T19:01:16.8716112Z INFO: Project configuration:
2023-01-09T19:01:16.8717131Z INFO: Excluded sources: **/build-wrapper-dump.json, FluentSerializer.Xml.Converter.DefaultXml/**/*.cs
2023-01-09T19:01:16.8787928Z INFO: Excluded tests: **/GlobalSuppressions.cs
2023-01-09T19:01:16.8789649Z INFO: Excluded sources for duplication: FluentSerializer.Xml/Converting/Converters/FormattableConverter.cs
So I’m pretty sure it only uses the path if you add a path without a pattern. Maybe this is on purpose, but it kind of seems like a bug to me.