Related questions
Pitfalls/gotchas of ClickOnce/smart-client deployment in .NET
I have several .NET Windows Forms applications that I'm preparing to convert into a ClickOnce/smart-client deployment scenario. I've read the isn't-this-great tutorials, but are there pitfalls or "gotchas" that I should be aware of?
There are several minor applications …
How to get folder path for ClickOnce application
I need to write a file in the same folder where a console ClickOnce .application (executable file) resides. The folder where it launches from.
I tried using Application.StartupPath & Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location)
but the path is pointing …