Skip to content

Commit

Permalink
fix: Set AssemblyLoadContext to be not unload-able
Browse files Browse the repository at this point in the history
  • Loading branch information
SOsterbrink committed Nov 16, 2023
1 parent 45dd52d commit 52a051f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dscom.client/AssemblyResolver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ internal sealed class AssemblyResolver : IDisposable
internal AssemblyResolver(TypeLibConverterOptions options)
{
Options = options;
_context = new AssemblyLoadContext("dscom", true);
_context = new AssemblyLoadContext("dscom");
_context.Resolving += Context_Resolving;
}

Expand Down

0 comments on commit 52a051f

Please sign in to comment.