We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 001abf1 commit 417b7b2Copy full SHA for 417b7b2
1 file changed
MonkeyLoaderWrapper/Program.cs
@@ -117,7 +117,10 @@ private static async Task Main(string[] args)
117
118
// TODO: Should not be necessary anymore with the hookfxr changes. Either way, should be done by the load context
119
foreach (var assembly in AppDomain.CurrentDomain.GetAssemblies())
120
+ {
121
+ if (assembly.GetName().Name == "SoundFlow") continue;
122
NativeLibrary.SetDllImportResolver(assembly, ResolveNativeLibrary);
123
+ }
124
125
var mainResult = resoniteAssembly.EntryPoint!.Invoke(null, [args]);
126
0 commit comments