How to get Entity Framework Core 6.0.1 from daily builds

Viewed 151

I upgraded to Entity Framework Core 6.0.0, but I need the fix for Issue 26632 which is flagged as fixed for 6.0.1 and is said to be included in the Daily Builds; I followed the instructions for using Daily Builds in the docs (I also changed dotnet7 to dotnet6), but I don't see any versions with "6.0.1-*"; Am I missing something?

Edit: Include Prerelease is checked.

nuget.config

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <packageSources>
    <add key="dotnet6" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet6/nuget/v3/index.json" />
    <add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
  </packageSources>
</configuration>
1 Answers

A response from ajcvickers to my post on EF Core Issue 26632 clarified the response saying that the fix was available in the daily builds.

"Unfortunately, patches are not included in the daily builds. The 7.0.0 builds contain this fix. The patch is scheduled for release in the coming days."

Thanks to everyone who took time to help with this.

Related