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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/nunit/src/NUnitCore/Version.cs')
-rw-r--r--mcs/nunit/src/NUnitCore/Version.cs23
1 files changed, 0 insertions, 23 deletions
diff --git a/mcs/nunit/src/NUnitCore/Version.cs b/mcs/nunit/src/NUnitCore/Version.cs
deleted file mode 100644
index bc7770df126..00000000000
--- a/mcs/nunit/src/NUnitCore/Version.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-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";
- }
- }
-}