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: 64a5a7a23c25d05ac7bb4b89f9a541f15a761637 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace NUnit.Runner {

	/// <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 "1.10";
    }
  }
}