summaryrefslogtreecommitdiff
path: root/csharp/src
diff options
context:
space:
mode:
Diffstat (limited to 'csharp/src')
-rw-r--r--csharp/src/IceBox/Server.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/csharp/src/IceBox/Server.cs b/csharp/src/IceBox/Server.cs
index 4df3e244b1d..b717b689559 100644
--- a/csharp/src/IceBox/Server.cs
+++ b/csharp/src/IceBox/Server.cs
@@ -52,6 +52,11 @@ public class Server
usage();
return 0;
}
+ else if(s.Equals("-v") || s.Equals("--version"))
+ {
+ Console.Out.WriteLine("3.7a3");
+ return 0;
+ }
else
{
Console.Error.WriteLine("Server: unknown option `" + s + "'");