Skip to content

Commit 62a14e1

Browse files
committed
Upgrade IntegrationEventLogEF to netcore2
1 parent d65a112 commit 62a14e1

2 files changed

Lines changed: 9 additions & 8 deletions

File tree

src/BuildingBlocks/EventBus/IntegrationEventLogEF/IntegrationEventLogEF.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp1.1</TargetFramework>
4+
<TargetFramework>netcoreapp2.0</TargetFramework>
55
<RootNamespace>Microsoft.eShopOnContainers.BuildingBlocks.IntegrationEventLogEF</RootNamespace>
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.2" />
10-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="1.1.2" />
11-
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="1.1.2" />
12-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="1.1.2" />
13-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer.Design" Version="1.1.2" />
14-
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="1.1.1" />
9+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.0.0-preview2-final" />
10+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="2.0.0-preview2-final" />
11+
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="2.0.0-preview2-final" />
12+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="2.0.0-preview2-final" />
13+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer.Design" Version="2.0.0-preview1-final" />
14+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="2.0.0-preview2-final" />
1515
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
1616
</ItemGroup>
1717

1818
<ItemGroup>
19-
<DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet" Version="1.0.0" />
19+
<DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet" Version="2.0.0-preview2-final" />
2020
</ItemGroup>
2121

2222
<ItemGroup>

src/BuildingBlocks/EventBus/IntegrationEventLogEF/Services/IntegrationEventLogService.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
using System.Linq;
77
using System.Threading.Tasks;
88
using System;
9+
using Microsoft.EntityFrameworkCore.Diagnostics;
910

1011
namespace Microsoft.eShopOnContainers.BuildingBlocks.IntegrationEventLogEF.Services
1112
{

0 commit comments

Comments
 (0)