Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Type.GetType() changed loading behavior : (also GetTypes?) only searches in the default load context and calling assembly's load context for already loaded assemblies. When assemblies are loaded into custom AssemblyLoadContexts, Type.GetType() cannot find types from those assemblies, so it will probably hit the AppDomain/AppLoadCOntext AssemblyLoaded events.
Package nodes becoming dummy nodes?
Python type system issues?
Serialization/deserialization issues?
Dynamic type resolution failures in Dynamo VM?
The solution is to implement AssemblyLoadContext-aware type resolution that searches across all load contexts, not just the default one?
WPF xaml parser will load referenced dlls randomly (first one in app domain assemblies), even if from another alc.
Incompatible Dynamo versions loaded in separate ALCs will cause an issue. Also other dependencies that are referenced from XAML ?
How to write tests for ALC behavior?