Microsoft.Extensions.Logging.Abstractions : Error Version
See original GitHub issue**FTP OS: Unix
FTP Server: Pure-FTPd
Computer OS: Windows 11
FluentFTP Version: 40.0.0
Framework: .NET 7.4.2
Dependance : Microsoft.Extensions.Logging.Abstractions 2.1.0 Needed But not working. Windows Need Microsoft.Extensions.Logging.Abstractions 6.0.2
Issue Analytics
- State:
- Created a year ago
- Comments:17 (7 by maintainers)
Top Results From Across the Web
Could not load file or assembly Microsoft.Extensions. ...
The top-level project fails to compile with the following error: System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.
Read more >Windows 10 .Net 6 or .Net 7 runtime getting error Could not ...
Windows 10 .Net 6 or .Net 7 runtime getting error Could not load file or assembly 'Microsoft.Extensions.Logging.Abstractions, Version=7.0.0.0.
Read more >Azure Function and Entity Framework Sql Server error
A file named Microsoft.Extensions.Logging.Abstractions.dll exists in the \bin\Debug\net6.0 folder version 7.0.22.51805. Visual Studio version ...
Read more >Could not load file or assembly 'Microsoft.Extensions. ...
We are getting the same error System.Private.CoreLib: Could not load file or assembly 'Microsoft.Extensions.Logging.Abstractions, Version=5.0.
Read more >Microsoft.Extensions.Logging.Abstractions 7.0.1
Version Downloads Last updated
8.0.0‑preview.7.23375.6 27,127 13 days ago
8.0.0‑preview.6.23329.7 78,622 a month ago
8.0.0‑preview.5.23280.8 95,782 2 months ago
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
The modernized/new style of csproj that consolidates
packages.config
and many parts ofapp.config
into csproj.old style csproj
new/SDK style csproj
My example application also works when not upgrading
Microsoft.Extensions.Logging.Abstractions
.These kinds of problems are commonly referred to as Dependency Hell.
Using SDK style project alleviates a bunch of these problems, but cannot resolve all of them, e.g. the “Diamond dependency” (see the other link).
My best advice is if possible to upgrade to SDK style projects.
Otherwise look in
app.config
to see if it containsand change it to this to guide the .NET runtime to look for the newer
Microsoft.Extensions.Logging.Abstractions.dll
.