Skip to content

Commit 378ba92

Browse files
committed
Revision bump
1 parent f6704fc commit 378ba92

File tree

15 files changed

+17
-17
lines changed

15 files changed

+17
-17
lines changed

BuildTT/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.9.0
1+
3.10.0
Binary file not shown.
Binary file not shown.
-4.92 KB
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.9.0.0")]
34-
[assembly: AssemblyFileVersion("3.9.0.0")]
33+
[assembly: AssemblyVersion("3.10.0.0")]
34+
[assembly: AssemblyFileVersion("3.10.0.0")]

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.9.0
3+
// v3.10.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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<#
22
// Copyright (C) Simon Hughes 2012
3-
// v3.9.0
3+
// v3.10.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
#>
@@ -1601,7 +1601,7 @@
16011601
{
16021602
public static string Version()
16031603
{
1604-
return "v3.9.0";
1604+
return "v3.10.0";
16051605
}
16061606
}
16071607

@@ -3231,7 +3231,7 @@
32313231
}
32323232
public enum ForeignKeyNamingStrategy
32333233
{
3234-
Legacy, // Same as versions <= v3.9.0
3234+
Legacy, // Same as versions <= v3.10.0
32353235
Latest
32363236
}
32373237

@@ -3319,7 +3319,7 @@
33193319
}
33203320
}
33213321

3322-
// v0.0.0 <= v3.9.0
3322+
// v0.0.0 <= v3.10.0
33233323
public class LegacyForeignKeyNamingStrategy : BaseForeignKeyNamingStrategy, IForeignKeyNamingStrategy
33243324
{
33253325
public List<string> ReverseNavigationUniquePropName;

EntityFramework.Reverse.POCO.Generator/Northwind.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.9.0
3+
// v3.10.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

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.9.0";
7+
return "v3.10.0";
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.9.0
5+
Legacy, // Same as versions <= v3.10.0
66
Latest
77
}
88
}

0 commit comments

Comments
 (0)