-
-
Notifications
You must be signed in to change notification settings - Fork 1k
fixes(configuration): Not unique exporter for exporter type #1796
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fixes(configuration): Not unique exporter for exporter type #1796
Conversation
dbf79fa to
da38535
Compare
da38535 to
25fb4fc
Compare
9c974db to
230d6df
Compare
Assembly-level configuration attributes must have a lower priority than class to allow overriding their behavior.
230d6df to
bf0aacf
Compare
|
@workgroupengineering thanks! |
| private readonly List<BenchmarkLogicalGroupRule> logicalGroupRules = new List<BenchmarkLogicalGroupRule>(); | ||
| private readonly HashSet<BenchmarkLogicalGroupRule> logicalGroupRules = new HashSet<BenchmarkLogicalGroupRule>(); | ||
| private readonly static Conclusion[] emptyConclusion = Array.Empty<Conclusion>(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@AndreyAkinshin @workgroupengineering
Not sure if you noticed, but this turns logicalGroupRules back into HashSet<> (changed to List<> in #1866).
(I didn't do a full review, but this one jumped at me)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
…otnet#1796)" This reverts commit c1f210c
fixes #1700
alternative version of PR #1702