George Mauer
George Mauer

Reputation: 122212

Where is source for EF 6.1.3?

According to nuget Entity Framework is in version 6.1.3. I've cloned the repository on codeplex but don't see any corresponding code

W:\entityframework> git tag
6.0.0
6.0.0-beta1
6.0.0-rc1
6.0.1
6.0.2
6.0.2-beta1
6.1.0
6.1.0-alpha1
6.1.0-beta1
6.1.1
6.1.1-VS14
6.1.1-beta1

So...where's the source?

Edit: For that matter, where is 6.0.1 - I can update to that tag but running .\Build.cmd (and ignoring the fact that the tests fail to start) produces an assembly that is tagged as 6.0.0 and with methods that do not match a stack trace my application error reports.

Upvotes: 2

Views: 372

Answers (2)

Thomas Boby
Thomas Boby

Reputation: 789

Using git clone https://git01.codeplex.com/entityframework my list of tags is

6.0.0
6.0.0-beta1
6.0.0-rc1
6.0.1
6.0.2
6.0.2-beta1
6.1.0
6.1.0-alpha1
6.1.0-beta1
6.1.1
6.1.1-VS14
6.1.1-beta1
6.1.2
6.1.2-beta1
6.1.2-beta2
6.1.3
6.1.3-beta1
6.1.3-rc1-NeverReleased

Checking out 6.1.3 then Building in VS2015 or via Build.cmd compiles an assembly with metadata 6.1.0-alpha1.

EF 7.0 is much easier, but I'm not sure why EF 6 has these build issues.

Upvotes: 2

Related Questions