Skip to content

Commit 0b1abce

Browse files
committed
Revision bump
1 parent 514feb2 commit 0b1abce

File tree

16 files changed

+18
-19
lines changed

16 files changed

+18
-19
lines changed

BuildTT/Program.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ public class Program
77
{
88
static void Main()
99
{
10-
//const string root = "..\\..\\..\\";
1110
const string generatorRoot = "..\\..\\..\\Generator";
1211
const string ttRoot = "..\\..\\..\\EntityFramework.Reverse.POCO.Generator";
1312
const string templatesRoot = "..\\..\\..\\_File based templates";
@@ -16,7 +15,7 @@ static void Main()
1615

1716
TemplateFiles.Create(templatesRoot);
1817
BuildTT.Create(generatorRoot, ttRoot, version);
19-
//var vs = new VersionSetter(root, version);
18+
//var vs = new VersionSetter("..\\..\\..\\", version);
2019
//vs.SetVersions();
2120

2221
Console.WriteLine("Version: " + version);

BuildTT/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.6.1
1+
3.7.0
Binary file not shown.
Binary file not shown.
298 Bytes
Binary file not shown.

EntityFramework Reverse POCO Generator/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@
3030
// You can specify all the values or you can default the Build and Revision Numbers
3131
// by using the '*' as shown below:
3232
// [assembly: AssemblyVersion("1.0.*")]
33-
[assembly: AssemblyVersion("3.6.1.0")]
34-
[assembly: AssemblyFileVersion("3.6.1.0")]
33+
[assembly: AssemblyVersion("3.7.0.0")]
34+
[assembly: AssemblyFileVersion("3.7.0.0")]

EntityFramework Reverse POCO Generator/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Id="EntityFramework_Reverse_POCO_Generator..d542a934-8bd6-4136-b490-5f0049d62033" Version="3.6.1" Language="en-US" Publisher="Simon Hughes" />
4+
<Identity Id="EntityFramework_Reverse_POCO_Generator..d542a934-8bd6-4136-b490-5f0049d62033" Version="3.7.0" Language="en-US" Publisher="Simon Hughes" />
55
<DisplayName>EntityFramework Reverse POCO Generator</DisplayName>
66
<Description xml:space="preserve">Reverse engineers an existing database and generates EntityFramework Code First POCO classes, Configuration mappings and DbContext.</Description>
77
<MoreInfo>https://github.com/sjh37/EntityFramework-Reverse-POCO-Code-First-Generator</MoreInfo>

EntityFramework.Reverse.POCO.Generator/Database.tt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<#@ include file="EF.Reverse.POCO.v3.ttinclude" #>
22
<#
3-
// v3.6.1
3+
// v3.7.0
44
// Please make changes to the settings below.
55
// All you have to do is save this file, and the output file(s) are generated. Compiling does not regenerate the file(s).
66
// A course for the older v2 generator is available on Pluralsight at https://www.pluralsight.com/courses/code-first-entity-framework-legacy-databases

EntityFramework.Reverse.POCO.Generator/EF.Reverse.POCO.v3.ttinclude

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<#
22
// Copyright (C) Simon Hughes 2012
3-
// v3.6.1
3+
// v3.7.0
44
// If you want to submit a pull request, please modify the Generator C# project as this file
55
// is automatically constructed from the C# Generator project during the build process.
66
#>
@@ -42,7 +42,7 @@
4242
public static DatabaseType DatabaseType = DatabaseType.SqlServer; // SqlServer, SqlCe, PostgreSQL. Coming next: MySql, Oracle
4343
public static TemplateType TemplateType = TemplateType.EfCore6; // EfCore6, EfCore5, EfCore3, EfCore2, Ef6, FileBasedCore2, FileBasedCore3. FileBased specify folder using Settings.TemplateFolder
4444
public static GeneratorType GeneratorType = GeneratorType.EfCore; // EfCore, Ef6, Custom. Custom edit GeneratorCustom class to provide your own implementation
45-
public static ForeignKeyNamingStrategy ForeignKeyNamingStrategy = ForeignKeyNamingStrategy.Legacy; // Please use Legacy for now (same as versions <= v3.6.1), Latest (not yet ready)
45+
public static ForeignKeyNamingStrategy ForeignKeyNamingStrategy = ForeignKeyNamingStrategy.Legacy; // Please use Legacy for now (same as versions <= v3.7.0), Latest (not yet ready)
4646
public static bool UseMappingTables = false; // Can only be set to true for EF6. If true, mapping will be used and no mapping tables will be generated. If false, all tables will be generated.
4747
public static FileManagerType FileManagerType = FileManagerType.EfCore; // .NET Core project = EfCore; .NET 4.x project = VisualStudio; No output (testing only) = Null
4848
public static string ConnectionString = ""; // This is used by the generator to reverse engineer your database
@@ -1516,7 +1516,7 @@
15161516
{
15171517
public static string Version()
15181518
{
1519-
return "v3.6.1";
1519+
return "v3.7.0";
15201520
}
15211521
}
15221522

@@ -3071,7 +3071,7 @@
30713071
}
30723072
public enum ForeignKeyNamingStrategy
30733073
{
3074-
Legacy, // Same as versions <= v3.6.1
3074+
Legacy, // Same as versions <= v3.7.0
30753075
Latest
30763076
}
30773077

@@ -3159,7 +3159,7 @@
31593159
}
31603160
}
31613161

3162-
// v0.0.0 <= v3.6.1
3162+
// v0.0.0 <= v3.7.0
31633163
public class LegacyForeignKeyNamingStrategy : BaseForeignKeyNamingStrategy, IForeignKeyNamingStrategy
31643164
{
31653165
public List<string> ReverseNavigationUniquePropName;

Generator/EfrpgVersion.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ public static class EfrpgVersion
44
{
55
public static string Version()
66
{
7-
return "v3.6.1";
7+
return "v3.7.0";
88
}
99
}
1010
}

0 commit comments

Comments
 (0)