71

After update to the new package Microsoft.EntityFrameworkCore.SqlServer 1.1.2 I got error when try to create DBContext:

System.IO.FileLoadException occurred HResult=0x80131040
Message=Could not load file or assembly 'Microsoft.Extensions.DependencyInjection.Abstractions, Version=1.1.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040) Source=Microsoft.EntityFrameworkCore StackTrace: at Microsoft.EntityFrameworkCore.DbContext..ctor(DbContextOptions options) at Services.Infrastructure.Data.SqlServerDbContext..ctor(DatabaseOptions databaseOptions) in C:\src\backend\Packages\Services.Infrastructure\Data\SqlServerDbContext.cs:line 16 at Translations.Api.Data.TranslationsDbContext..ctor(DatabaseOptions databaseOptions) in C:\src\backend\Modules\Translations\Translations.Api\Data\TranslationsDbContext.cs:line 16

My base DbContext

public class SqlServerDbContext : DbContext
{
    private readonly DatabaseOptions _databaseOptions;

    protected SqlServerDbContext(DatabaseOptions databaseOptions)
    {
        if (string.IsNullOrEmpty(databaseOptions.ConnectionString))
            throw new Exception("Database connection string is missed.");

        _databaseOptions = databaseOptions;
    }

    protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
    {
        optionsBuilder.UseSqlServer(_databaseOptions.ConnectionString);
    }
}

Database options that I use

public class DatabaseOptions
{
    public string ConnectionString { get; set; }
}

Place where I create instance of context

 var dbOptions = new DatabaseOptions { ConnectionString = _connectionString };
 DbContext = (TContext) Activator.CreateInstance(typeof(TContext), dbOptions);
// where TContext is derived class from SqlServerDbContext

All my packages are updated. Visual Studio 2017 15.2 (26430.6). Before upgrade to 1.1.2 everything works fine. Please help to solve the problem.

Robert N. Dean
  • 1,049
  • 1
  • 10
  • 26
  • Please give information about what the projects is you're consuming the package from? .net standard / .net framework library / console / web application? – Martin Ullrich May 16 '17 at 08:14
  • @MartinUllrich .net framework library with .net461 – Robert N. Dean May 16 '17 at 08:26
  • 1
    FWIW - This can happen if you played with upgrading your NuGets, then decided to use your source control tools to revert back to your 'working' project (reverted packages.config and the .csproj file) but then forgot to revert the binding redirects out of the web.config – bkwdesign May 07 '20 at 20:48
  • It would be great if this error contained helpful information, such as the incompatible packages, and at least a more clear error message. – Josh Noe Dec 11 '20 at 16:53

13 Answers13

87

Since you're using the project in a .net framework library, there's an issue with auto-generated binding redirects (might be resolved in the upcoming 15.3 update / 2.0 .net core CLI). To work around it, add this in your cpsroj file (preferably before any <Import> element for a .targets file if present):

<PropertyGroup>
  <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  <GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
</PropertyGroup>

This should force MSBuild to create / update a YourProject.dll.config file containing the necessary binding redirects.

Martin Ullrich
  • 86,695
  • 21
  • 239
  • 204
  • 1
    Thanks. Solved my problem around version 2.0.0. I had version 2.1.0 installed. – Azhar Khorasany Jul 04 '18 at 09:45
  • 1
    I installed a lib version through the CLI an ai got the lattest version of the library, however, I had to downgrade the version to match my development target wich was ASP.NET Core 2.0 (Not 2.1). – Aaron C Jul 11 '18 at 19:14
  • 1
    Is this only required for the database project or is it needed for all referenced projects? – Tigerware Nov 08 '18 at 14:54
  • 1
    For all "non-sdk" ("classic") csproj files that reference .net standard assemblies. So it may be required for all projects referencing the projects that need this. – Martin Ullrich Nov 08 '18 at 16:35
  • Does 15.3 refer to Visual Studio here? Any idea when it will be fixed? ~https://stackoverflow.com/questions/60217182/could-not-load-file-or-assembly-microsoft-extensions-dependencyinjection-abstra – Kirsten Mar 04 '20 at 04:15
  • After lots of research and finally I fixed this issue, see my answer below: https://stackoverflow.com/a/65434701/1815500 – Leon Dec 24 '20 at 06:22
  • Microsoft Visual Studio Professional 2019 - Version 16.8.3. The UI shows this property checked even if the tag it is not present in the csproj. Adding the AutoGenerateBindingRedirects tag in the csproj, the UI is then capable of setting it. It did not solve my binding issues though... – pasx May 26 '21 at 14:39
13

I Googled my exception below, and it brought me to this stakoverflow post.

System.IO.FileNotFoundException: 'Could not load file or assembly 'Microsoft.Extensions.OptionsModel, Version=1.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60' or one of its dependencies. The system cannot find the file specified.'

I had the relevant Binding Redirects but if I Delete all bin/obj folders it worked fine afterwards.

metoyou
  • 561
  • 1
  • 6
  • 20
  • I had +1 this answer 2 years ago and it's still relevant. And somehow, it happens every time Windows updates with a new .NET SDK. Today? .NET 6.0. `git clean -xfd` does the trick. – jsgoupil Apr 13 '22 at 02:00
13

If you're working with Azure Functions in .NET Core this will work

If you're not using the .net framework library, but the .net core library, the accepted solution will not work because "you shouldn't be setting the property AutoGenerateBindingRedirects on a netcoreapp project as binding redirects aren't even a thing in netcoreapp, they are only a concept in .NET Framework" (source: https://github.com/microsoft/ApplicationInsights-dotnet/issues/1699#issuecomment-592693436).

Try this:

  1. Uninstall Microsoft.Extensions.DependencyInjection.Abstractions
  2. Uninstall Microsoft.Extensions.DependencyInjection

Although this seems like a radical solution, it works because the library is already indirectly installed through Microsoft.Azure.Functions.Extensions:

enter image description here

Important: Do not try to solve this issue by upgrading .NET Core from 3.1 to 5.0. Azure functions are still not supported in .NET 5.0. A patch is coming in early 2021: https://github.com/Azure/azure-functions-host/issues/6674#issuecomment-712596112

EDIT: Azure functions are now supported in .NET Core (unless you're using durable entities, in that case you'll have to wait for .NET 6.0):

Today (10/3/2021), we announced support for running production .NET 5 apps on Azure Functions. https://techcommunity.microsoft.com/t5/apps-on-azure/net-on-azure-functions-roadmap/ba-p/2197916

Luis Gouveia
  • 6,274
  • 8
  • 41
  • 59
7

This is an old thread but I had a similar same issue after I updated my Azure function from dotnet core version 3 to 3.1.

Error message: Could not load file or assembly 'Microsoft.Extensions.DependencyInjection.Abstractions, Version=3.1.9.0

In this case you need to update the Azure function version to 'v3' in .proj file.

enter image description here

albin
  • 517
  • 4
  • 10
  • 3
    This helped me out, but I need to add something now that Version 5.x of Microsoft.Extensions.DependencyInjection is available now. I had to downgrade to 3.10.0, but I imagine any 3.x version will work just as well. 5.x does not work and results in the same issue. This will probably be resolved with Azure Functions for dotnet 5 is availalbe. – Oxymoron Nov 23 '20 at 15:31
2

For me, what did it was to downgrade all the packages support .Net Standard to 2.2.0 from 3.x.x i guess the 3.x packages relevant to a different version of .Net standard which does not support ,net framework.

Yosi Golan
  • 109
  • 7
2

I was having this problem. But the packet was Microsoft.Extensions.Primitives. In my case I installed it in my Project and in my Project test from nuget. Maybe could help someone.

Edvan Souza
  • 1,040
  • 9
  • 11
  • In my case also this `Microsoft.Extensions.Primitives` assembly couldn't be loaded. Execute `Update-Package -reinstall -Project MyProject` from Package Manager Console resolved the issue... – Rohim Chou Aug 09 '21 at 05:04
2

It is a cracy thing, but for me what really worked was upating all packages that begins with Microsoft, since I updated my project to run over .Net 4.7.2, Then I just right click on Solution and Clean and Build again.

Ruben
  • 127
  • 1
  • 3
2

I've been getting a similar issue using Azure functions 3.0.13

I kept getting the error System.IO.FileNotFoundException: 'Could not load file or assembly 'Microsoft.Extensions.Options, Version=6.0.0.0

I added a direct reference to the package via NuGet and then had to add this to my project.csproj file to make everything work. I can't take credit for this fix. I found it somewhere else a while ago, but I can't recall from where.

<PropertyGroup>
    <_FunctionsSkipCleanOutput>true</_FunctionsSkipCleanOutput>
</PropertyGroup>
Matt
  • 5,976
  • 9
  • 49
  • 75
1

If Luis Gouveia solution doesn't work for you, try downgrading other dependencies included in the project. There are some compatibility issues with .NET standard.

Ref: https://github.com/Azure/Azure-Functions/issues/1729

Tomasz Kaniewski
  • 949
  • 7
  • 15
0

I had same problem and finally fixed with below solution

  1. Install "System.ComponentModel.Annotations" version 4.4.1 in a temporary project to get the file of "System.ComponentModel.Annotations.dll", then copy this file to your real project and then change your project reference to point this file instead of the original NuGet path

  2. Then in your web.config add below code that redirec

<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <publisherPolicy apply="no" />
      <dependentAssembly>
        <assemblyIdentity name="System.ComponentModel.Annotations" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-4.5.0.0" newVersion="4.2.1.0" />
      </dependentAssembly>
    </assemblyBinding>
Leon
  • 182
  • 9
0

I was working on my simple .Net 5.0 Console app and while modifying my project's namespace the "auto-installation" added only the Microsoft.Extensions.DependencyInjection.Abstraction not the package nuget Microsoft.Extensions.DependencyInjection

It took me a while to realise that...

Mister Q
  • 250
  • 6
  • 20
0

I had the same problem with a .Net Framework website that included an assembly using EFCore 3.1.22. I resolved the problem by putting the assembly redirects in the web.config.

stevie_c
  • 990
  • 8
  • 15
-1

Here some solves :

1-I updated my packages from NuGet to latest version and working 100%.

2- make these editing in config :

<PropertyGroup>
  <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  </PropertyGroup>

3-Delete all bin and objct folders then clean solution and finally run , hope this will be work .