Skip to content

Commit f1404f5

Browse files
committed
Revision bump
1 parent 860eee2 commit f1404f5

File tree

19 files changed

+21
-21
lines changed

19 files changed

+21
-21
lines changed

BuildTT/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.4.0
1+
3.4.1
Binary file not shown.
Binary file not shown.
502 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.4.0.0")]
34-
[assembly: AssemblyFileVersion("3.4.0.0")]
33+
[assembly: AssemblyVersion("3.4.1.0")]
34+
[assembly: AssemblyFileVersion("3.4.1.0")]

EntityFramework.Reverse.POCO.Generator/Database NorthwindSqlCe40.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.4.0
3+
// v3.4.1
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/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.4.0
3+
// v3.4.1
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.4.0
3+
// v3.4.1
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
#>
@@ -41,7 +41,7 @@
4141
public static DatabaseType DatabaseType = DatabaseType.SqlServer; // SqlServer, SqlCe, PostgreSQL. Coming next: MySql, Oracle
4242
public static TemplateType TemplateType = TemplateType.EfCore3; // EfCore5, EfCore3, EfCore2, Ef6, FileBasedCore2, FileBasedCore3. FileBased specify folder using Settings.TemplateFolder
4343
public static GeneratorType GeneratorType = GeneratorType.EfCore; // EfCore, Ef6, Custom. Custom edit GeneratorCustom class to provide your own implementation
44-
public static ForeignKeyNamingStrategy ForeignKeyNamingStrategy = ForeignKeyNamingStrategy.Legacy; // Please use Legacy for now (same as versions <= v3.4.0), Latest (not yet ready)
44+
public static ForeignKeyNamingStrategy ForeignKeyNamingStrategy = ForeignKeyNamingStrategy.Legacy; // Please use Legacy for now (same as versions <= v3.4.1), Latest (not yet ready)
4545
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.
4646
public static FileManagerType FileManagerType = FileManagerType.Custom; // .NET Core project = Custom; .NET project = VisualStudio; No output (testing only) = Null
4747
public static string ConnectionString = ""; // This is used by the generator to reverse engineer your database
@@ -1351,7 +1351,7 @@
13511351
{
13521352
public static string Version()
13531353
{
1354-
return "v3.4.0";
1354+
return "v3.4.1";
13551355
}
13561356
}
13571357

@@ -2855,7 +2855,7 @@
28552855
}
28562856
public enum ForeignKeyNamingStrategy
28572857
{
2858-
Legacy, // Same as versions <= v3.4.0
2858+
Legacy, // Same as versions <= v3.4.1
28592859
Latest
28602860
}
28612861

@@ -2943,7 +2943,7 @@
29432943
}
29442944
}
29452945

2946-
// v0.0.0 <= v3.4.0
2946+
// v0.0.0 <= v3.4.1
29472947
public class LegacyForeignKeyNamingStrategy : BaseForeignKeyNamingStrategy, IForeignKeyNamingStrategy
29482948
{
29492949
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.4.0";
7+
return "v3.4.1";
88
}
99
}
1010
}

Generator/ForeignKeyNamingStrategy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{
33
public enum ForeignKeyNamingStrategy
44
{
5-
Legacy, // Same as versions <= v3.4.0
5+
Legacy, // Same as versions <= v3.4.1
66
Latest
77
}
88
}

0 commit comments

Comments
 (0)