我在双击CCTray上的测试/构建时出现以下异常,我能够强制构建/启动-停止项目,但在显示网页时我得到异常。我曾尝试重新安装CCTray,但都不起作用。
例外:
Unhandled exception: System.ComponentModel.Win32Exception: No application is associated with the specified file for this operation
at System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStartInfo startInfo)
at System.Diagnostics.Process.Start(ProcessStartInfo startInfo)
at ThoughtWorks.CruiseControl.CCTrayLib.Presentation.MainFormController.DisplayWebPageForProject(ISingleProjectDetail project)
at ThoughtWorks.CruiseControl.CCTrayLib.Presentation.MainForm.lvProjects_DoubleClick(Object sender, EventArgs e)
at System.Windows.Forms.Control.OnDoubleClick(EventArgs e)
at System.Windows.Forms.ListView.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)有人能帮我解决这个问题吗?
发布于 2016-06-13 14:16:00
浏览器版本中的更改可能会导致此问题。此处缺少HTML文件关联。您可以在设置默认程序中对其进行修复。步骤将是
·转至控制面板\程序\默认程序\设置默认程序·选择浏览器(例如Internet Explorer)·选择此程序的默认程序·选择HTTP并保存。
现在,任何HTTP都将在选定的浏览器中打开。
https://stackoverflow.com/questions/37745993
复制相似问题