/*============================================================================= Project: SharpImage Module: siVersion.cs Language: C# Author: Dan Mueller Date: $Date: 2008-01-09 16:23:10 +1000 (Wed, 09 Jan 2008) $ Revision: $Revision: 29 $ Copyright (c) Queensland University of Technology (QUT) 2007. All rights reserved. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =============================================================================*/ using System; using System.Collections.Generic; using System.Text; namespace SharpImage.Main { class siVersion { public const string MAJOR_VERSION = "0"; public const string MINOR_VERSION = "9"; public const string BUILD_VERSION = "5"; public const string VERSION = MAJOR_VERSION + "." + MINOR_VERSION + "." + BUILD_VERSION; } }