From f8b8958740bbc09118e22caf9c2ff0efda0cebc4 Mon Sep 17 00:00:00 2001 From: Viktor Hofer Date: Wed, 15 Sep 2021 16:40:19 +0200 Subject: [PATCH] Avoid unnecessary deps in M.E.Logging.Abstractions Fixes https://github.com/dotnet/runtime/issues/59161 The System.Buffers and System.Memory packages are dependencies of the net6.0 M.E.Logging.Abstractions library even though these libraries are part of the .NETCoreApp shared framework. It's undesirable to have the dependencies in the graph as these aren't built live anymore and are only serviced on demand. --- .../src/Microsoft.Extensions.Logging.Abstractions.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/Microsoft.Extensions.Logging.Abstractions.csproj b/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/Microsoft.Extensions.Logging.Abstractions.csproj index da0b5613e44cb..0d3728bcac0e6 100644 --- a/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/Microsoft.Extensions.Logging.Abstractions.csproj +++ b/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/Microsoft.Extensions.Logging.Abstractions.csproj @@ -30,7 +30,7 @@ Microsoft.Extensions.Logging.Abstractions.NullLogger Link="Common\System\Text\ValueStringBuilder.cs" /> - +