We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af75f5d commit fddb071Copy full SHA for fddb071
Source/Drivers/DriverHelper.cs
@@ -11,6 +11,7 @@
11
using System.Collections.Immutable;
12
using System.Diagnostics;
13
using System.Reflection.Metadata;
14
+using Microsoft.Extensions.Logging;
15
#endif
16
17
namespace LinqToDB.LINQPad;
@@ -77,6 +78,8 @@ public static void Init()
77
78
return typeof(Blob).Assembly;
79
if (requestedAssembly.Name == "System.Text.Json")
80
return typeof(JsonDocument).Assembly;
81
+ if (requestedAssembly.Name == "Microsoft.Extensions.Logging.Abstractions")
82
+ return typeof(ILogger).Assembly;
83
84
return null;
85
};
0 commit comments