Skip to content

Commit 4ac6c13

Browse files
PanyushkinDPanyushkinD
authored andcommitted
Upgrade EFCore to v2
1 parent b18b338 commit 4ac6c13

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

EFCore.CommonTools.Benchmarks/EntityFrameworkCore.CommonTools.Benchmarks.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp1.1</TargetFramework>
5+
<TargetFramework>netcoreapp2.0</TargetFramework>
66
</PropertyGroup>
77

88
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
@@ -14,9 +14,9 @@
1414
</PropertyGroup>
1515

1616
<ItemGroup>
17-
<PackageReference Include="BenchmarkDotNet" Version="0.10.9" />
18-
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="1.1.2" />
19-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="1.1.2" />
17+
<PackageReference Include="BenchmarkDotNet" Version="0.10.13" />
18+
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="2.0.2" />
19+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.0.2" />
2020
</ItemGroup>
2121

2222
<ItemGroup>

EFCore.CommonTools.Tests/EntityFrameworkCore.CommonTools.Tests.csproj

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

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp1.1</TargetFramework>
4+
<TargetFramework>netcoreapp2.0</TargetFramework>
55
</PropertyGroup>
66

77
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
@@ -13,8 +13,8 @@
1313
</PropertyGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="1.1.2" />
17-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="1.1.2" />
16+
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="2.0.2" />
17+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.0.2" />
1818
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.6.1" />
1919
<PackageReference Include="MSTest.TestAdapter" Version="1.2.0" />
2020
<PackageReference Include="MSTest.TestFramework" Version="1.2.0" />

EFCore.CommonTools/EntityFrameworkCore.CommonTools.csproj

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

33
<PropertyGroup>
4-
<TargetFramework>netstandard1.6</TargetFramework>
4+
<TargetFramework>netstandard2.0</TargetFramework>
55
<PackageId>EntityFrameworkCore.CommonTools</PackageId>
66
<PackageVersion>2.0.0</PackageVersion>
77
<Description>An extension for EntityFrameworkCore that provides Auditing, Concurrency Checks, JSON Complex Types and writing history to Transaction Log.</Description>
@@ -23,20 +23,20 @@
2323
<DefineConstants>TRACE;DEBUG;EF_CORE</DefineConstants>
2424
<OutputPath>bin\Debug\</OutputPath>
2525
<NoWarn>$(NoWarn);1591</NoWarn>
26-
<DocumentationFile>bin\Debug\netstandard1.6\EntityFrameworkCore.CommonTools.xml</DocumentationFile>
26+
<DocumentationFile>bin\Debug\netstandard2.0\EntityFrameworkCore.CommonTools.xml</DocumentationFile>
2727
</PropertyGroup>
2828

2929
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
3030
<DefineConstants>TRACE;EF_CORE</DefineConstants>
3131
<OutputPath>bin\Release\</OutputPath>
3232
<NoWarn>$(NoWarn);1591</NoWarn>
33-
<DocumentationFile>bin\Release\netstandard1.6\EntityFrameworkCore.CommonTools.xml</DocumentationFile>
33+
<DocumentationFile>bin\Release\netstandard2.0\EntityFrameworkCore.CommonTools.xml</DocumentationFile>
3434
</PropertyGroup>
3535

3636
<ItemGroup>
3737
<PackageReference Include="Jil" Version="2.15.4" />
38-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.2" />
39-
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="1.1.2" />
38+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.0.2" />
39+
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="2.0.2" />
4040
</ItemGroup>
4141

4242
</Project>

0 commit comments

Comments
 (0)