-
Notifications
You must be signed in to change notification settings - Fork 778
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
Change hardcoded assembly name to reflected assembly name #841
Comments
what platform are you using caliburn.micro with? |
.net 4.8 WPF, so for my scenario changing \src\Caliburn.Micro.Platform\ConventionManager.cs is enough, but it's better to change both |
@foldax what is the issue with having the assembly name hardcoded? |
Well, I had to resolve conflicts between addins loaded into single
AppDomain. These addins come from different vendors.
Caliburn uses static classes like IoC or ViewLocator. This is where
conflicts occur.
So, what i do, is assembly renaming, Caliburn is changed to something like
Caliburn1 for addin1. It resolves my problem.
I had to change this hardcoded value in IL, so i think it's better for
future development to change it to Reflected value. It's more flexible i
think.
czw., 12 sty 2023 o 09:08 KasperSK ***@***.***> napisał(a):
… @foldax <https://github.com/foldax> what is the issue with having the
assembly name hardcoded?
—
Reply to this email directly, view it on GitHub
<#841 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ADEYCMN6UTA3LKIRGN7BLBLWR63ZRANCNFSM6AAAAAATOURTQY>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
This doesn't seem like a common scenario. What is the performance impact? Should this be cached in a static? |
This is a string template? We can use c# 11 'Raw string literals;'; |
There are two places in solution with hardcoded assembly name:
This:
should be changed to this:
I know it's generally not a mistake, but for some scenarios, second code is much better and currently I'm working on such
The text was updated successfully, but these errors were encountered: