I'm using ClickOnce install with visual studio for my C# console application. I need to install the application at a same path for all of my users, because of that the regular install path is not good for me. How can i change the installation path?
Asked
Active
Viewed 92 times
-1
-
you can't thats how click once works. it does it all with temp files and such. – Jacobr365 Feb 26 '16 at 15:11
1 Answers
2
This is not possible with ClickOnce. All applications are installed per user in the users application cache.

Marc
- 3,905
- 4
- 21
- 37
-
is it possible to run code during the installation? like changing configuration file? – Tal Peretz Feb 26 '16 at 15:19