Ejemplo n.º 1
0
        private async void OnDefaultCommandExecute(object sender, EventArgs e)
        {
            try
            {
                await MonoExtension.BuildStartupProjectAsync();

                await VSMonoDebuggerCommands.Instance.DeployAndRunCommandOverSSHAsync(VSMonoDebuggerCommands.DebuggerMode.AttachProcess);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Ejemplo n.º 2
0
 protected virtual void Delay(Action method, float time)
 {
     MonoExtension.Invoke(this, method, time);
 }