Closed
Description
Describe the bug
When using a .netconfig file I specified multiple filters using a single assemblyfilters attribute and it does not appear that they are all working, if i use multiple assemblyfilter attributes that it does work
To Reproduce
Using:
Executable: /home/runner/.dotnet/tools/.store/dotnet-reportgenerator-globaltool/5.3.11/dotnet-reportgenerator-globaltool/5.3.11/tools/net8.0/any/ReportGenerator.Core.dll
The following did not exclude all assemblies
[ReportGenerator]
assemblyfilters = -*Test*;-NServiceBus*
but the following did
[ReportGenerator]
assemblyfilter = -*Test*
assemblyfilter = -*NServiceBus*