c# - Entity framework 6.0.1 -> 6.1 update, project references say "6.0.0.0" -


I use EF 6.1 using library package manager

The solution has been updated

Next I have reviewed the list of pending changes and the EF reference in each project is similar to these lines:

  & lt; Include references = "EntityFramework, Version = 6.0.0.0, Culture = Neutral, PublicKeyToken = b77a5c561934e089, Processor Arcture = MSIL" & gt; & Lt; SpecificVersion & gt; False & lt; / SpecificVersion & gt; & Lt; HintPath & gt; .. \. \ Package \ EntityFramework.6.1.0 \ lib \ net45 \ EntityFramework.dll & lt; / HintPath & gt; & Lt; / References & gt;  

Why does this specify the fully qualified name version = 6.0.0.0 ? "Itemprop =" text ">

EntityFramework 6.1.0

is still an assembly version of 6.0.0.0 . 0 to 6.1.0 so that you do not need a binding redirect in your configuration file.

What is in your .csproj for the reference include attribute value is correct.


Comments

Popular posts from this blog

import - Python ImportError: No module named wmi -

Editing Python Class in Shell and SQLAlchemy -

c# - MySQL Parameterized Select Query joining tables issue -