Skip to content

Commit 02ee0d1

Browse files
committed
Revision bump
1 parent ef0bd83 commit 02ee0d1

File tree

14 files changed

+21
-21
lines changed

14 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.8.1
1+
3.8.2
Binary file not shown.
Binary file not shown.
2.06 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.8.1.0")]
34-
[assembly: AssemblyFileVersion("3.8.1.0")]
33+
[assembly: AssemblyVersion("3.8.2.0")]
34+
[assembly: AssemblyFileVersion("3.8.2.0")]

EntityFramework Reverse POCO Generator/source.extension.vsixmanifest

Lines changed: 7 additions & 7 deletions
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.8.1" Language="en-US" Publisher="Simon Hughes" />
4+
<Identity Id="EntityFramework_Reverse_POCO_Generator..d542a934-8bd6-4136-b490-5f0049d62033" Version="3.8.2" 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>
@@ -14,28 +14,28 @@
1414
<InstallationTarget Version="[15.0,18.0)" Id="Microsoft.VisualStudio.Community">
1515
<ProductArchitecture>x86</ProductArchitecture>
1616
</InstallationTarget>
17-
<InstallationTarget Version="[16.0,18.0)" Id="Microsoft.VisualStudio.Community">
17+
<InstallationTarget Version="[15.0,18.0)" Id="Microsoft.VisualStudio.Community">
1818
<ProductArchitecture>amd64</ProductArchitecture>
1919
</InstallationTarget>
20-
<InstallationTarget Version="[16.0,18.0)" Id="Microsoft.VisualStudio.Community">
20+
<InstallationTarget Version="[15.0,18.0)" Id="Microsoft.VisualStudio.Community">
2121
<ProductArchitecture>arm64</ProductArchitecture>
2222
</InstallationTarget>
2323
<InstallationTarget Version="[15.0,18.0)" Id="Microsoft.VisualStudio.Pro">
2424
<ProductArchitecture>x86</ProductArchitecture>
2525
</InstallationTarget>
26-
<InstallationTarget Version="[16.0,18.0)" Id="Microsoft.VisualStudio.Pro">
26+
<InstallationTarget Version="[15.0,18.0)" Id="Microsoft.VisualStudio.Pro">
2727
<ProductArchitecture>amd64</ProductArchitecture>
2828
</InstallationTarget>
29-
<InstallationTarget Version="[16.0,18.0)" Id="Microsoft.VisualStudio.Pro">
29+
<InstallationTarget Version="[15.0,18.0)" Id="Microsoft.VisualStudio.Pro">
3030
<ProductArchitecture>arm64</ProductArchitecture>
3131
</InstallationTarget>
3232
<InstallationTarget Version="[15.0,18.0)" Id="Microsoft.VisualStudio.Enterprise">
3333
<ProductArchitecture>x86</ProductArchitecture>
3434
</InstallationTarget>
35-
<InstallationTarget Version="[16.0,18.0)" Id="Microsoft.VisualStudio.Enterprise">
35+
<InstallationTarget Version="[15.0,18.0)" Id="Microsoft.VisualStudio.Enterprise">
3636
<ProductArchitecture>amd64</ProductArchitecture>
3737
</InstallationTarget>
38-
<InstallationTarget Version="[16.0,18.0)" Id="Microsoft.VisualStudio.Enterprise">
38+
<InstallationTarget Version="[15.0,18.0)" Id="Microsoft.VisualStudio.Enterprise">
3939
<ProductArchitecture>arm64</ProductArchitecture>
4040
</InstallationTarget>
4141
</Installation>

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.8.1
3+
// v3.8.2
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.8.1
3+
// v3.8.2
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
#>
@@ -1543,7 +1543,7 @@
15431543
{
15441544
public static string Version()
15451545
{
1546-
return "v3.8.1";
1546+
return "v3.8.2";
15471547
}
15481548
}
15491549

@@ -3172,7 +3172,7 @@
31723172
}
31733173
public enum ForeignKeyNamingStrategy
31743174
{
3175-
Legacy, // Same as versions <= v3.8.1
3175+
Legacy, // Same as versions <= v3.8.2
31763176
Latest
31773177
}
31783178

@@ -3260,7 +3260,7 @@
32603260
}
32613261
}
32623262

3263-
// v0.0.0 <= v3.8.1
3263+
// v0.0.0 <= v3.8.2
32643264
public class LegacyForeignKeyNamingStrategy : BaseForeignKeyNamingStrategy, IForeignKeyNamingStrategy
32653265
{
32663266
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.8.1";
7+
return "v3.8.2";
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.8.1
5+
Legacy, // Same as versions <= v3.8.2
66
Latest
77
}
88
}

0 commit comments

Comments
 (0)