Click here to Skip to main content
15,886,578 members
Articles / Programming Languages / C#

CooksMate

Rate me:
Please Sign up or sign in to vote.
3.32/5 (8 votes)
21 Jan 2008GPL32 min read 56.2K   1K   23  
A simple program to help get the timing of a roast dinner
/*
 * Created by SharpDevelop.
 * User: andy
 * Date: 01/01/2008
 * Time: 13:50
 * 
 * To change this template use Tools | Options | Coding | Edit Standard Headers.
 */

using System;
using System.Reflection;

namespace uk.org.aspellclark.common
{
	/// <summary>
	/// Description of AppInfo.
	/// </summary>
	public class AppInfo
	{
		// Create a logger for use in this class
		private static readonly log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);


		/// <summary>
		/// This function returns the application version number
		/// as 4 integers seperated by full stops
		/// </summary>
        public static string ApplicationVersion
        {
        	get 
        	{
        		System.Diagnostics.FileVersionInfo info = System.Diagnostics.FileVersionInfo.GetVersionInfo(Assembly.GetExecutingAssembly().Location);
        		log.Info(String.Format("appVer is:\n{0}",info.ToString()));
        		        
        		string ver = String.Format("{0}.{1}.{2}.{3}",
        		                           info.FileMajorPart,
        		                           info.FileMinorPart,
        		                           info.FileBuildPart,
        		                           info.FilePrivatePart);
        		return ver;
        	}
        }

        /// <summary>
        /// this function returns the directory where the application executable
        /// is located
        /// </summary>
        public static string ApplicationPath
        {
            get {
        		string str= System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase);
        		log.Info(String.Format("path is [{0}]",str));
				return str;
        	}
        }

    	
	}//class
}//namespace

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer (Senior) Airbus Defense and Space
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions