Microsoft.CodeAnalysis.Workspaces.MSBuild nuget package is missing reference to Microsoft.Extensions.Logging #72938
Labels
Area-Infrastructure
Resolution-Fixed
The bug has been fixed and/or the requested behavior has been implemented
Milestone
Version Used: 4.10.0-3.24202.15
In dotnet/hotreload-utils#379 we hit an exception when upgrading from 4.9 to 4.10 Roslyn:
Looking at the .nuspec of Microsoft.CodeAnalysis.Workspaces.MSBuild I saw that it is referencing only Microsoft.Extensions.Logging.Abstractions, but not Microsoft.Extensions.Logging.
The latter assembly is referenced since 19751d7 because
LoggerFilterOptions
is contained in Microsoft.Extensions.Logging, not .Abstractions:roslyn/src/Workspaces/Core/MSBuild/MSBuild/DiagnosticReporterLoggerProvider.cs
Line 33 in 70316b7
We presumably need to update the package dependency here:
roslyn/src/Workspaces/Core/MSBuild/Microsoft.CodeAnalysis.Workspaces.MSBuild.csproj
Lines 28 to 30 in 8fffb1b
/cc @jasonmalinowski @dibarbet
The text was updated successfully, but these errors were encountered: