Skip to content
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

Simplify loading assemblies #379

Merged
merged 1 commit into from May 5, 2023

Conversation

0xced
Copy link
Member

@0xced 0xced commented May 5, 2023

Use a HashSet instead of a Dictionary keyed by the assembly full name. If an assembly is loaded twice with the same AssemblyName it will be the same instance so a HashSet (without even a custom IEqualityComparer) is the perfect solution.

Also, Assembly.Load can throw many exceptions but won't return null.

This was initially introduced in 74402f8 but merged incorrectly in ac1b8c8.

Use a HashSet instead of a Dictionary keyed by the assembly full name. If an assembly is loaded twice with the same AssemblyName it will be the same instance so a HashSet (without even a custom IEqualityComparer<Assembly>) is the perfect solution.

Also, Assembly.Load can throw many exceptions but won't return null.

This was initially introduced in 74402f8 but merged incorrectly in ac1b8c8.
@nblumhardt
Copy link
Member

Ah, sorry about that! 😄

@nblumhardt nblumhardt merged commit 321156e into serilog:dev May 5, 2023
1 check passed
@0xced 0xced deleted the simplify-loading-assemblies branch May 5, 2023 11:01
@nblumhardt nblumhardt mentioned this pull request May 10, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants