Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update daily builds to call out the GA daily build #22854

Merged
merged 1 commit into from
Sep 30, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions docs/DailyBuilds.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ There are two different NuGet package sources for daily builds as we transition

### Package source for EF Core 5.0

Note that a feature complete release candidate with a go-live license is [available now on NuGet](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/5.0.0-rc.1.20451.13). Daily builds are only needed for early access to the RC2 bits.
Note that a feature complete release candidate with a go-live license is [available now on NuGet](https://www.nuget.org/packages/Microsoft.EntityFrameworkCore/5.0.0-rc.1.20451.13). Daily builds are only needed for early access to the GA bits.

For EF Core 5.0 RC2 daily builds, `NuGet.config` should contain:
For EF Core 5.0 GA daily builds, `NuGet.config` should contain:

```xml
<?xml version="1.0" encoding="utf-8"?>
Expand Down Expand Up @@ -59,14 +59,14 @@ The easiest way to use daily builds is with wildcards in project references. For
</ItemGroup>
```

Or for EF Core 5.0 RC2 daily builds:
Or for EF Core 5.0 GA daily builds:

```xml
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.0-rc.2.*" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.0-rc.2.*" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.0-rc.2.*" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite" Version="5.0.0-rc.2.*" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.0-rtm.*" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.0-rtm.*" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.0-rtm.*" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite" Version="5.0.0-rtm.*" />
</ItemGroup>
```

Expand Down