/*============================================================================= Project: SharpImage Module: siVersion.cs Language: C# Author: Dan Mueller Date: $Date: 2007-07-06 10:57:00 +1000 (Fri, 06 Jul 2007) $ Revision: $Revision: 2 $ 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 = "2"; public const string VERSION = MAJOR_VERSION + "." + MINOR_VERSION + "." + BUILD_VERSION; } }