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
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 What is in your 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. .csproj for the reference include attribute value is correct.
Comments
Post a Comment