Skip to content

Commit

Permalink
Depend on EF Core 5.0.0-alpha.1.20073.3
Browse files Browse the repository at this point in the history
  • Loading branch information
roji committed Jan 28, 2020
1 parent e9802c5 commit 83af9be
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@bb95ce727fd49ec1a65933419cc7c91747785302
with:
dotnet-version: '3.1.100'
dotnet-version: '5.0.100-alpha.1.20073.4'

- name: Test
run: dotnet test --configuration Debug
Expand All @@ -85,7 +85,7 @@ jobs:
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@bb95ce727fd49ec1a65933419cc7c91747785302
with:
dotnet-version: '3.1.100'
dotnet-version: '5.0.100-alpha.1.20073.4'

- name: Pack NuGet packages (CI versions)
if: startsWith(github.ref, 'refs/heads/')
Expand Down
10 changes: 5 additions & 5 deletions Directory.Build.targets
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<Project>
<ItemGroup>
<PackageReference Update="Microsoft.EntityFrameworkCore" Version="3.1.1" />
<PackageReference Update="Microsoft.EntityFrameworkCore.Relational" Version="3.1.1" />
<PackageReference Update="Microsoft.EntityFrameworkCore.Abstractions" Version="3.1.1" />
<PackageReference Update="Microsoft.EntityFrameworkCore.Relational.Specification.Tests" Version="3.1.1" />
<PackageReference Update="Microsoft.EntityFrameworkCore.Design" Version="3.1.1" />
<PackageReference Update="Microsoft.EntityFrameworkCore" Version="5.0.0-alpha.1.20076.2" />
<PackageReference Update="Microsoft.EntityFrameworkCore.Relational" Version="5.0.0-alpha.1.20076.2" />
<PackageReference Update="Microsoft.EntityFrameworkCore.Abstractions" Version="5.0.0-alpha.1.20076.2" />
<PackageReference Update="Microsoft.EntityFrameworkCore.Relational.Specification.Tests" Version="5.0.0-alpha.1.20076.2" />
<PackageReference Update="Microsoft.EntityFrameworkCore.Design" Version="5.0.0-alpha.1.20076.2" />

<PackageReference Update="Microsoft.Extensions.Configuration.Json" Version="3.1.1" />
<PackageReference Update="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="3.1.1" />
Expand Down
14 changes: 14 additions & 0 deletions NuGet.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="aspnet-extensions" value="https://dotnetfeed.blob.core.windows.net/aspnet-extensions/index.json" />
<add key="dotnet-core" value="https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json" />
<add key="dotnet-eng" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" />
<add key="dotnet5" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5/nuget/v3/index.json" />
<add key="dotnet5-transport" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5-transport/nuget/v3/index.json" />
<add key="roslyn" value="https://dotnet.myget.org/F/roslyn/api/v3/index.json" />
<add key="efcore" value="https://dotnetfeed.blob.core.windows.net/aspnet-entityframeworkcore/index.json" />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
</packageSources>
</configuration>
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "3.1.100"
"version": "5.0.100-alpha.1.20073.4"
}
}
2 changes: 1 addition & 1 deletion test/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Import Project="..\Directory.Build.props" />

<PropertyGroup>
<TargetFrameworks>netcoreapp3.1</TargetFrameworks>
<TargetFrameworks>netcoreapp5.0</TargetFrameworks>
</PropertyGroup>

<PropertyGroup>
Expand Down

0 comments on commit 83af9be

Please sign in to comment.