Skip to content

Commit f0f4a41

Browse files
Add support to EF Core 5 and EF Core 6
1 parent cdbc7ae commit f0f4a41

File tree

5 files changed

+81
-2
lines changed

5 files changed

+81
-2
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net5.0</TargetFramework>
5+
<AssemblyName>EntityFrameworkExtras.EFCore</AssemblyName>
6+
<RootNamespace>EntityFrameworkExtras.EFCore</RootNamespace>
7+
<GenerateDocumentationFile>True</GenerateDocumentationFile>
8+
<DocumentationFile>bin\Release\net5.0\EntityFrameworkExtras.EFCore.xml</DocumentationFile>
9+
<SignAssembly>True</SignAssembly>
10+
<AssemblyOriginatorKeyFile>Key.snk</AssemblyOriginatorKeyFile>
11+
<Version>5.0.6</Version>
12+
<Authors>ZZZ Projects &amp; Michael Rodda &amp; Craig Bovis</Authors>
13+
<Company>EntityFrameworkExtras.EFCore</Company>
14+
<Product>EntityFrameworkExtras.EFCore</Product>
15+
<Description>EntityFrameworkExtras provides some useful additions to EntityFramework such as executing Stored Procedures with User-Defined Table Types and Output Parameters.</Description>
16+
</PropertyGroup>
17+
18+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
19+
<DefineConstants>TRACE;EFCORE</DefineConstants>
20+
</PropertyGroup>
21+
22+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
23+
<DefineConstants>TRACE;EFCORE</DefineConstants>
24+
</PropertyGroup>
25+
26+
<ItemGroup>
27+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.0" />
28+
</ItemGroup>
29+
30+
</Project>

EntityFrameworkExtras.EFCore5/Key.snk

596 Bytes
Binary file not shown.
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net6.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
<AssemblyName>EntityFrameworkExtras.EFCore</AssemblyName>
8+
<RootNamespace>EntityFrameworkExtras.EFCore</RootNamespace>
9+
<GenerateDocumentationFile>True</GenerateDocumentationFile>
10+
<DocumentationFile>bin\Release\net6.0\EntityFrameworkExtras.EFCore.xml</DocumentationFile>
11+
<SignAssembly>True</SignAssembly>
12+
<AssemblyOriginatorKeyFile>Key.snk</AssemblyOriginatorKeyFile>
13+
<Version>6.0.6</Version>
14+
<Authors>ZZZ Projects &amp; Michael Rodda &amp; Craig Bovis</Authors>
15+
<Company>EntityFrameworkExtras.EFCore</Company>
16+
<Product>EntityFrameworkExtras.EFCore</Product>
17+
<Description>EntityFrameworkExtras provides some useful additions to EntityFramework such as executing Stored Procedures with User-Defined Table Types and Output Parameters.</Description>
18+
</PropertyGroup>
19+
20+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
21+
<DefineConstants>TRACE;EFCORE</DefineConstants>
22+
</PropertyGroup>
23+
24+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
25+
<DefineConstants>TRACE;EFCORE</DefineConstants>
26+
</PropertyGroup>
27+
28+
<ItemGroup>
29+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.0" />
30+
</ItemGroup>
31+
32+
<Import Project="..\EntityFrameworkExtras.Shared\EntityFrameworkExtras.Shared.projitems" Label="Shared" />
33+
34+
</Project>

EntityFrameworkExtras.EFCore6/Key.snk

596 Bytes
Binary file not shown.

EntityFrameworkExtras.sln

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 16
4-
VisualStudioVersion = 16.0.29709.97
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.0.31903.59
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EntityFrameworkExtras", "EntityFrameworkExtras\EntityFrameworkExtras.csproj", "{7A59AE4F-751F-4BE0-BA70-020072F1409E}"
77
EndProject
@@ -50,6 +50,10 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EntityFrameworkExtras.EF6.N
5050
EndProject
5151
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Z.EntityFrameworkExtras.Lab.EFCore30", "EntityFrameworkExtras.EFCore3.lab\Z.EntityFrameworkExtras.Lab.EFCore30.csproj", "{F213770C-7433-44F6-A44E-EC9E3A304BDC}"
5252
EndProject
53+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EntityFrameworkExtras.EFCore6", "EntityFrameworkExtras.EFCore6\EntityFrameworkExtras.EFCore6.csproj", "{C36B51B1-A379-44DC-B3DE-1B7A69536A2E}"
54+
EndProject
55+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EntityFrameworkExtras.EFCore5", "EntityFrameworkExtras.EFCore5\EntityFrameworkExtras.EFCore5.csproj", "{4D2D8EE1-7738-4562-891F-D6C191BE47A0}"
56+
EndProject
5357
Global
5458
GlobalSection(SharedMSBuildProjectFiles) = preSolution
5559
EntityFrameworkExtras.Shared\EntityFrameworkExtras.Shared.projitems*{357c473a-d606-4a9b-8c5f-17deb6ffb005}*SharedItemsImports = 4
@@ -66,6 +70,7 @@ Global
6670
EntityFrameworkExtras.Shared\EntityFrameworkExtras.Shared.projitems*{909f9fc3-3384-467b-9a7d-1b2328080ba8}*SharedItemsImports = 5
6771
EntityFrameworkExtras.Shared\EntityFrameworkExtras.Shared.projitems*{992957e5-4e42-4e90-b510-2c3e3ca56b25}*SharedItemsImports = 5
6872
EntityFrameworkExtras.Tests.Shared\EntityFrameworkExtras.Tests.Shared.projitems*{b0c9b99b-0c3c-4e72-85d7-12bcd185c067}*SharedItemsImports = 4
73+
EntityFrameworkExtras.Shared\EntityFrameworkExtras.Shared.projitems*{c36b51b1-a379-44dc-b3de-1b7a69536a2e}*SharedItemsImports = 5
6974
EntityFrameworkExtras.Shared\EntityFrameworkExtras.Shared.projitems*{c4c0a992-318d-4b77-b151-69e18b789a52}*SharedItemsImports = 5
7075
EndGlobalSection
7176
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -133,6 +138,14 @@ Global
133138
{F213770C-7433-44F6-A44E-EC9E3A304BDC}.Debug|Any CPU.Build.0 = Debug|Any CPU
134139
{F213770C-7433-44F6-A44E-EC9E3A304BDC}.Release|Any CPU.ActiveCfg = Release|Any CPU
135140
{F213770C-7433-44F6-A44E-EC9E3A304BDC}.Release|Any CPU.Build.0 = Release|Any CPU
141+
{C36B51B1-A379-44DC-B3DE-1B7A69536A2E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
142+
{C36B51B1-A379-44DC-B3DE-1B7A69536A2E}.Debug|Any CPU.Build.0 = Debug|Any CPU
143+
{C36B51B1-A379-44DC-B3DE-1B7A69536A2E}.Release|Any CPU.ActiveCfg = Release|Any CPU
144+
{C36B51B1-A379-44DC-B3DE-1B7A69536A2E}.Release|Any CPU.Build.0 = Release|Any CPU
145+
{4D2D8EE1-7738-4562-891F-D6C191BE47A0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
146+
{4D2D8EE1-7738-4562-891F-D6C191BE47A0}.Debug|Any CPU.Build.0 = Debug|Any CPU
147+
{4D2D8EE1-7738-4562-891F-D6C191BE47A0}.Release|Any CPU.ActiveCfg = Release|Any CPU
148+
{4D2D8EE1-7738-4562-891F-D6C191BE47A0}.Release|Any CPU.Build.0 = Release|Any CPU
136149
EndGlobalSection
137150
GlobalSection(SolutionProperties) = preSolution
138151
HideSolutionNode = FALSE
@@ -151,6 +164,8 @@ Global
151164
{909F9FC3-3384-467B-9A7D-1B2328080BA8} = {9E15663E-75C8-43B6-8236-4847A2685D42}
152165
{357C473A-D606-4A9B-8C5F-17DEB6FFB005} = {90962F79-D846-4F3D-9255-2F28A36D089C}
153166
{7ED1D61C-9396-4663-952D-D2F7DAD19B18} = {9EC06092-6237-42AE-B0C1-7CF5974368A2}
167+
{C36B51B1-A379-44DC-B3DE-1B7A69536A2E} = {9E15663E-75C8-43B6-8236-4847A2685D42}
168+
{4D2D8EE1-7738-4562-891F-D6C191BE47A0} = {9E15663E-75C8-43B6-8236-4847A2685D42}
154169
EndGlobalSection
155170
GlobalSection(ExtensibilityGlobals) = postSolution
156171
SolutionGuid = {8FEFCD82-1FCB-4477-90F7-A935BF59298B}

0 commit comments

Comments
 (0)