Skip to content

Commit fddb071

Browse files
committed
[linqpad 5] fix mysql regression
1 parent af75f5d commit fddb071

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Source/Drivers/DriverHelper.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
using System.Collections.Immutable;
1212
using System.Diagnostics;
1313
using System.Reflection.Metadata;
14+
using Microsoft.Extensions.Logging;
1415
#endif
1516

1617
namespace LinqToDB.LINQPad;
@@ -77,6 +78,8 @@ public static void Init()
7778
return typeof(Blob).Assembly;
7879
if (requestedAssembly.Name == "System.Text.Json")
7980
return typeof(JsonDocument).Assembly;
81+
if (requestedAssembly.Name == "Microsoft.Extensions.Logging.Abstractions")
82+
return typeof(ILogger).Assembly;
8083

8184
return null;
8285
};

0 commit comments

Comments
 (0)