-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Add possibility to use dynamically loaded assemblies #5352
base: main
Are you sure you want to change the base?
Add possibility to use dynamically loaded assemblies #5352
Conversation
@dotnet-policy-service agree |
@cvijayak The bug #5356 shows problems with the serialization. It throws an error because the type is |
Is there something to do for my to get the "SonarCloud Code Analysis" ready? |
@truthz03 Thanks for your PR! At this point there's nothing for you to do, I just need time to review and test. Thank you for your patience. |
@sfmskywalker Hi, can you tell me how long it will take to get my PR merged? |
@truthz03 Hey there, sorry it's been taking a while. I will get this merged this week. Thanks again for your contribution, your PR makes sense! |
30603b0
to
f6aa105
Compare
@truthz03 Unfortunately, the main branch received an update that uses the In other words, we need to revisit either that change, or your change, such that you can still resolve services from DI. |
@sfmskywalker Ok. Let me know if you find a solution. |
Because I need a way to load assemblies dynamically (plugins) in my project, I found some problems while serializing/deserializing payloads.
In order to solve this problem, I would like to implement a mechanism to resolve the necessary types manually if needed.
This change is