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 5f5f7bd commit d0e2408Copy full SHA for d0e2408
src/ImageSharp.Web/DependencyInjection/ServiceCollectionExtensions.cs
@@ -11,6 +11,7 @@
11
using SixLabors.ImageSharp.Web.Middleware;
12
using SixLabors.ImageSharp.Web.Processors;
13
using SixLabors.ImageSharp.Web.Providers;
14
+using SixLabors.ImageSharp.Web.Synchronization;
15
16
namespace SixLabors.ImageSharp.Web.DependencyInjection
17
{
@@ -57,6 +58,8 @@ private static void AddDefaultServices(
57
58
59
builder.Services.AddSingleton<FormatUtilities>();
60
61
+ builder.Services.AddSingleton<AsyncKeyReaderWriterLock<string>>();
62
+
63
builder.SetRequestParser<QueryCollectionRequestParser>();
64
65
builder.SetCache<PhysicalFileSystemCache>();
0 commit comments