Skip to content

Commit d65d55a

Browse files
committed
Fix
1 parent 2569377 commit d65d55a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/BuiltInTools/DotNetDeltaApplier/StartupHook.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public static void Initialize()
4949
var path = Path.Combine(processDir, args.Name + ".dll");
5050
return File.Exists(path) ? AssemblyLoadContext.Default.LoadFromAssemblyPath(path) : null;
5151
},
52-
hotReloadExceptionCreateHandler: async (code, message) =>
52+
hotReloadExceptionCreateHandler: (code, message) =>
5353
{
5454
// Continue executing the code if the debugger is attached.
5555
// It will throw the exception and the debugger will handle it.

0 commit comments

Comments
 (0)