ClickOnce application does not start through Process.Start(“x.abc”) with *.abc associated to the ClickOnce application
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I have successfully developed and deployed a ClickOnce application which registers an associated file extension, for instance *.abc . When I click on a file named x.abc or if I type x.abc from the command prompt, the ClickOnce application starts, and I can retrieve the file through the dedicated API. I can also launch the application programmatically with the following code: System.Diagnostics.Process.Start ("x.abc"); Manual start of x.abc by double-clicking it from the Explorer works. Manual start of x.abc from the command prompt works.