Skip to content

Commit 9081c5d

Browse files
committed
Deprecate EFCore 2 and 5
1 parent 8e03292 commit 9081c5d

File tree

548 files changed

+216
-50010
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

548 files changed

+216
-50010
lines changed

BuildTT/BuildTT.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ private static void CreateTT(string generatorRoot, string ttRoot)
2828
// For help on the various Types below, please read https://github.com/sjh37/EntityFramework-Reverse-POCO-Code-First-Generator/wiki/Common-Settings.*Types-explained
2929
// The following entries are the only required settings.
3030
Settings.DatabaseType = DatabaseType.SqlServer; // SqlServer, SqlCe, SQLite, PostgreSQL. Coming next: MySql, Oracle
31-
Settings.TemplateType = TemplateType.EfCore7; // EfCore7, EfCore6, EfCore5, EfCore3, EfCore2, Ef6, FileBasedCore2-7. FileBased specify folder using Settings.TemplateFolder
31+
Settings.TemplateType = TemplateType.EfCore7; // EfCore7, EfCore6, EfCore3, Ef6, FileBasedCore3-7. FileBased specify folder using Settings.TemplateFolder
3232
Settings.GeneratorType = GeneratorType.EfCore; // EfCore, Ef6, Custom. Custom edit GeneratorCustom class to provide your own implementation
3333
3434
Settings.FileManagerType = FileManagerType.EfCore; // .NET Core project = EfCore; .NET 4.x project = VisualStudio; No output (testing only) = Null

BuildTT/TemplateFiles.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@ public static class TemplateFiles
1313
public static void Create(string templatesRoot)
1414
{
1515
CreateFiles(new TemplateEf6(), Path.Combine(templatesRoot, "Templates.EF6"));
16-
CreateFiles(new TemplateEfCore2(), Path.Combine(templatesRoot, "Templates.EFCore2"));
1716
CreateFiles(new TemplateEfCore3(), Path.Combine(templatesRoot, "Templates.EFCore3"));
18-
CreateFiles(new TemplateEfCore5(), Path.Combine(templatesRoot, "Templates.EFCore5"));
1917
CreateFiles(new TemplateEfCore6(), Path.Combine(templatesRoot, "Templates.EFCore6"));
2018
CreateFiles(new TemplateEfCore7(), Path.Combine(templatesRoot, "Templates.EFCore7"));
2119
}

EF.Reverse.POCO.GeneratorV3.sln

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tester.BusinessLogic", "Tes
2828
EndProject
2929
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tester.Integration.EfCore3", "Tester.Integration.EfCore3\Tester.Integration.EfCore3.csproj", "{21AD71C3-92C9-47E6-B06E-53DC79ACE822}"
3030
EndProject
31-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tester.Integration.EfCore2", "Tester.Integration.EfCore2\Tester.Integration.EfCore2.csproj", "{B29867E7-DFE8-45ED-8DC8-2D13931C9447}"
32-
EndProject
33-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tester.Integration.EFCore5", "Tester.Integration.EfCore5\Tester.Integration.EFCore5.csproj", "{0EC23682-963E-4CAC-973F-9D63C4796B12}"
34-
EndProject
3531
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tester.Integration.Ef6", "Tester.Integration.Ef6\Tester.Integration.Ef6.csproj", "{F7622EDE-5CBD-4B9F-BC72-D5B3C4A3A3D4}"
3632
EndProject
3733
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Generator.Tests.Common", "Generator.Tests.Common\Generator.Tests.Common.csproj", "{8FBBEBB8-8E1F-480E-BF95-6658E4F4EF85}"
@@ -173,30 +169,6 @@ Global
173169
{21AD71C3-92C9-47E6-B06E-53DC79ACE822}.Release|Mixed Platforms.Build.0 = Release|Any CPU
174170
{21AD71C3-92C9-47E6-B06E-53DC79ACE822}.Release|x86.ActiveCfg = Release|Any CPU
175171
{21AD71C3-92C9-47E6-B06E-53DC79ACE822}.Release|x86.Build.0 = Release|Any CPU
176-
{B29867E7-DFE8-45ED-8DC8-2D13931C9447}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
177-
{B29867E7-DFE8-45ED-8DC8-2D13931C9447}.Debug|Any CPU.Build.0 = Debug|Any CPU
178-
{B29867E7-DFE8-45ED-8DC8-2D13931C9447}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
179-
{B29867E7-DFE8-45ED-8DC8-2D13931C9447}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
180-
{B29867E7-DFE8-45ED-8DC8-2D13931C9447}.Debug|x86.ActiveCfg = Debug|Any CPU
181-
{B29867E7-DFE8-45ED-8DC8-2D13931C9447}.Debug|x86.Build.0 = Debug|Any CPU
182-
{B29867E7-DFE8-45ED-8DC8-2D13931C9447}.Release|Any CPU.ActiveCfg = Release|Any CPU
183-
{B29867E7-DFE8-45ED-8DC8-2D13931C9447}.Release|Any CPU.Build.0 = Release|Any CPU
184-
{B29867E7-DFE8-45ED-8DC8-2D13931C9447}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
185-
{B29867E7-DFE8-45ED-8DC8-2D13931C9447}.Release|Mixed Platforms.Build.0 = Release|Any CPU
186-
{B29867E7-DFE8-45ED-8DC8-2D13931C9447}.Release|x86.ActiveCfg = Release|Any CPU
187-
{B29867E7-DFE8-45ED-8DC8-2D13931C9447}.Release|x86.Build.0 = Release|Any CPU
188-
{0EC23682-963E-4CAC-973F-9D63C4796B12}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
189-
{0EC23682-963E-4CAC-973F-9D63C4796B12}.Debug|Any CPU.Build.0 = Debug|Any CPU
190-
{0EC23682-963E-4CAC-973F-9D63C4796B12}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
191-
{0EC23682-963E-4CAC-973F-9D63C4796B12}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
192-
{0EC23682-963E-4CAC-973F-9D63C4796B12}.Debug|x86.ActiveCfg = Debug|Any CPU
193-
{0EC23682-963E-4CAC-973F-9D63C4796B12}.Debug|x86.Build.0 = Debug|Any CPU
194-
{0EC23682-963E-4CAC-973F-9D63C4796B12}.Release|Any CPU.ActiveCfg = Release|Any CPU
195-
{0EC23682-963E-4CAC-973F-9D63C4796B12}.Release|Any CPU.Build.0 = Release|Any CPU
196-
{0EC23682-963E-4CAC-973F-9D63C4796B12}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
197-
{0EC23682-963E-4CAC-973F-9D63C4796B12}.Release|Mixed Platforms.Build.0 = Release|Any CPU
198-
{0EC23682-963E-4CAC-973F-9D63C4796B12}.Release|x86.ActiveCfg = Release|Any CPU
199-
{0EC23682-963E-4CAC-973F-9D63C4796B12}.Release|x86.Build.0 = Release|Any CPU
200172
{F7622EDE-5CBD-4B9F-BC72-D5B3C4A3A3D4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
201173
{F7622EDE-5CBD-4B9F-BC72-D5B3C4A3A3D4}.Debug|Any CPU.Build.0 = Debug|Any CPU
202174
{F7622EDE-5CBD-4B9F-BC72-D5B3C4A3A3D4}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU

EntityFramework.Reverse.POCO.Generator/Database NorthwindSqlCe40.tt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// For help on the various Types below, please read https://github.com/sjh37/EntityFramework-Reverse-POCO-Code-First-Generator/wiki/Common-Settings.*Types-explained
1212
// The following entries are the only required settings.
1313
Settings.DatabaseType = DatabaseType.SqlCe; // SqlServer, SqlCe, SQLite, PostgreSQL. Coming next: MySql, Oracle
14-
Settings.TemplateType = TemplateType.EfCore7; // EfCore7, EfCore6, EfCore5, EfCore3, EfCore2, Ef6, FileBasedCore2-7. FileBased specify folder using Settings.TemplateFolder
14+
Settings.TemplateType = TemplateType.EfCore7; // EfCore7, EfCore6, EfCore3, Ef6, FileBasedCore3-7. FileBased specify folder using Settings.TemplateFolder
1515
Settings.GeneratorType = GeneratorType.EfCore; // EfCore, Ef6, Custom. Custom edit GeneratorCustom class to provide your own implementation
1616
Settings.UseMappingTables = false; // Must be false for TemplateType.EfCore2-4. If true, mapping will be used, and no mapping tables will be generated. If false, all tables will be generated.
1717
Settings.FileManagerType = FileManagerType.EfCore; // .NET Core project = EfCore; .NET 4.x project = VisualStudio; No output (testing only) = Null

EntityFramework.Reverse.POCO.Generator/Database.tt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// For help on the various Types below, please read https://github.com/sjh37/EntityFramework-Reverse-POCO-Code-First-Generator/wiki/Common-Settings.*Types-explained
1313
// The following entries are the only required settings.
1414
Settings.DatabaseType = DatabaseType.SqlServer; // SqlServer, SqlCe, SQLite, PostgreSQL. Coming next: MySql, Oracle
15-
Settings.TemplateType = TemplateType.EfCore7; // EfCore7, EfCore6, EfCore5, EfCore3, EfCore2, Ef6, FileBasedCore2-7. FileBased specify folder using Settings.TemplateFolder
15+
Settings.TemplateType = TemplateType.EfCore7; // EfCore7, EfCore6, EfCore3, Ef6, FileBasedCore3-7. FileBased specify folder using Settings.TemplateFolder
1616
Settings.GeneratorType = GeneratorType.EfCore; // EfCore, Ef6, Custom. Custom edit GeneratorCustom class to provide your own implementation
1717

1818
Settings.FileManagerType = FileManagerType.EfCore; // .NET Core project = EfCore; .NET 4.x project = VisualStudio; No output (testing only) = Null

0 commit comments

Comments
 (0)