Skip to content

Commit 578216b

Browse files
Fixed FileVersion missing for .NET Standard 20 project
1 parent e1dfd47 commit 578216b

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

Main/Source/NMemory.Net40/Properties/AssemblyVersion.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@
3535
// by using the '*' as shown below:
3636
// [assembly: AssemblyVersion("1.0.*")]
3737
[assembly: AssemblyVersion("3.0.0.0")]
38-
[assembly: AssemblyFileVersion("3.1.3")]
39-
[assembly: AssemblyInformationalVersion("3.1.3")]
38+
[assembly: AssemblyFileVersion("3.1.4")]
39+
[assembly: AssemblyInformationalVersion("3.1.4")]

Main/Source/NMemory.Net45/Properties/AssemblyVersion.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
// by using the '*' as shown below:
3636
// [assembly: AssemblyVersion("1.0.*")]
3737
[assembly: AssemblyVersion("3.0.0.0")]
38-
[assembly: AssemblyFileVersion("3.1.3")]
39-
[assembly: AssemblyInformationalVersion("3.1.3")]
38+
[assembly: AssemblyFileVersion("3.1.4")]
39+
[assembly: AssemblyInformationalVersion("3.1.4")]
4040

4141

Main/Source/NMemory.NetStandard20/NMemory.NetStandard20.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@
55
<AssemblyName>NMemory</AssemblyName>
66
<RootNamespace>NMemory</RootNamespace>
77
<Authors>ZZZ Projects</Authors>
8-
<Version>3.1.3</Version>
8+
<Version>3.1.4</Version>
99
<Description>NMemory is a lightweight non-persistent in-memory relational database engine that is purely written in C# and can be hosted by .NET applications. It supports traditional database features like indexes, foreign key relations, transaction handling and isolation, stored procedures, query optimization.
1010

1111
Package Manager</Description>
1212
<SignAssembly>true</SignAssembly>
1313
<AssemblyOriginatorKeyFile>Key.snk</AssemblyOriginatorKeyFile>
1414
<AssemblyVersion>3.0.0.0</AssemblyVersion>
15+
<FileVersion>3.1.4.0</FileVersion>
1516
</PropertyGroup>
1617

1718
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

0 commit comments

Comments
 (0)