Downgrade to net standard 1.2

This commit is contained in:
Geoffroy BONNEVILLE
2020-03-23 18:35:00 +01:00
parent b8240d482f
commit 5067f81189
60 changed files with 1250 additions and 285 deletions

View File

@@ -55,20 +55,20 @@ namespace ModernKeePassLib
/// e.g. 2.19 = 0x02130000.
/// It is highly recommended to use <c>FileVersion64</c> instead.
/// </summary>
public static readonly uint Version32 = 0x022A0100;
public static readonly uint Version32 = 0x022C0000;
/// <summary>
/// Version, encoded as 64-bit unsigned integer
/// (component-wise, 16 bits per component).
/// </summary>
public static readonly ulong FileVersion64 = 0x0002002A00010000UL;
public static readonly ulong FileVersion64 = 0x0002002C00000000UL;
/// <summary>
/// Version, encoded as string.
/// </summary>
public static readonly string VersionString = "2.42.1";
public static readonly string VersionString = "2.44";
public static readonly string Copyright = @"Copyright © 2003-2019 Dominik Reichl";
public static readonly string Copyright = @"Copyright © 2003-2020 Dominik Reichl";
/// <summary>
/// Product website URL. Terminated by a forward slash.