protected override string GetListenMessage (RemoteDebuggerStartInfo dsi)
		{
			var cmd = ((IPhoneDebuggerStartInfo)dsi).ExecutionCommand;
			string message = GettextCatalog.GetString ("Waiting for debugger to connect on {0}:{1}...", dsi.Address, dsi.DebugPort);
			if (!cmd.Simulator)
				message += "\n" + GettextCatalog.GetString ("Please start the application on the device.");
			return message;
		}
Beispiel #2
0
        protected override string GetListenMessage(RemoteDebuggerStartInfo dsi)
        {
            var    cmd     = ((IPhoneDebuggerStartInfo)dsi).ExecutionCommand;
            string message = GettextCatalog.GetString("Waiting for debugger to connect on {0}:{1}...", dsi.Address, dsi.DebugPort);

            if (!cmd.Simulator)
            {
                message += "\n" + GettextCatalog.GetString("Please start the application on the device.");
            }
            return(message);
        }
 protected override string GetListenMessage(RemoteDebuggerStartInfo dsi)
 {
     return String.Format("Waiting for app to connect to: {0}:{1}", dsi.Address, dsi.DebugPort);
 }
Beispiel #4
0
 protected override string GetListenMessage(RemoteDebuggerStartInfo dsi)
 {
     return(string.Format("Waiting for debugger to connect on {0}:{1}...", dsi.Address, dsi.DebugPort));
 }
		protected override string GetListenMessage (RemoteDebuggerStartInfo dsi)
		{
			//var cmd = ((MonoDroidDebuggerStartInfo)dsi).ExecutionCommand;
			string message = GettextCatalog.GetString ("Waiting for debugger to connect on {0}:{1}...", dsi.Address, dsi.DebugPort);
			return message;
		}