Ejemplo n.º 1
0
		private static void ShowCommandLineError(string e)
		{
			Parser p = new Parser(typeof (CommandLineArguments), ShowCommandLineError);
			e = e.Replace("Duplicate 'liftPath' argument",
						  "Please enclose project path in quotes if it contains spaces.");
			e += "\r\n\r\n" + p.GetUsageString(200);
			MessageBox.Show(e, "WeSay Command Line Problem");
		}