Fixed TypeExtensions init error #32

This commit is contained in:
soukoku 2015-01-30 07:05:15 -05:00
parent 1170b2d6ef
commit 38baf125a0
2 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@ namespace NTwain.Data
{ItemType.Int8, 1},
{ItemType.UInt8, 1},
{ItemType.Int16, 2},
{ItemType.UInt8, 2},
{ItemType.UInt16, 2},
{ItemType.Bool, 2},
{ItemType.Int32, 4},
{ItemType.UInt32, 4},

View File

@ -1,6 +1,6 @@
using System.Reflection;
[assembly: AssemblyCopyright("Copyright \x00a9 Yin-Chun Wang 2012-2014")]
[assembly: AssemblyCopyright("Copyright \x00a9 Yin-Chun Wang 2012-2015")]
[assembly: AssemblyCompany("Yin-Chun Wang")]
[assembly: AssemblyVersion(NTwain.NTwainVersionInfo.Release)]
@ -23,7 +23,7 @@ namespace NTwain
/// <summary>
/// The build release version number.
/// </summary>
public const string Build = "3.2.4"; // change this for each nuget release
public const string Build = "3.2.5"; // change this for each nuget release
}