Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Version.cs « NUnitCore « src « nunit « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bc7770df126e9da7a623e0b525f703960cb9d549 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
namespace NUnit.Runner 
{
	using System.Reflection;
	/// <summary>
	/// This class defines the current version of NUnit
	/// </summary>
	public class Version 
	{
		private Version() 
		{
			// don't instantiate
		}
		/// <summary>
		/// 
		/// </summary>
		/// <returns></returns>
		public static string id() 
		{
			return Assembly.GetExecutingAssembly().GetName().Version.ToString();
			//return "1.10";
		}
	}
}