Files
ntwain/NTwain/Properties/VersionInfo.cs

30 lines
874 B
C#
Raw Normal View History

2014-04-02 19:13:15 -04:00
using System.Reflection;
2014-04-02 19:01:21 -04:00
[assembly: AssemblyCopyright("Copyright \x00a9 Yin-Chun Wang 2012-2014")]
[assembly: AssemblyCompany("Yin-Chun Wang")]
2014-09-17 20:15:05 -04:00
[assembly: AssemblyVersion(NTwain.NTwainVersionInfo.Release)]
[assembly: AssemblyFileVersion(NTwain.NTwainVersionInfo.Build)]
[assembly: AssemblyInformationalVersion(NTwain.NTwainVersionInfo.Build)]
2014-04-02 19:01:21 -04:00
namespace NTwain
{
2014-09-17 20:15:05 -04:00
/// <summary>
/// Contains version info of this assembly.
/// </summary>
public class NTwainVersionInfo
2014-04-02 19:01:21 -04:00
{
2014-09-17 20:15:05 -04:00
/// <summary>
/// The major release version number.
/// </summary>
public const string Release = "3.0.0.0"; // keep this same in major (breaking) releases
/// <summary>
/// The build release version number.
/// </summary>
2014-11-09 13:23:06 -05:00
public const string Build = "3.2.0"; // change this for each nuget release
2014-09-17 20:15:05 -04:00
2014-04-02 19:01:21 -04:00
}
}