I have an Excel addin application which I developed with C# and I published to a network location using ClickOnce from VS2010.
The application assumes that all the xml files that I use in it are in the same folder as the application itself.
But when the user installs my app using ClickOnce
the application files are copied into one folder ( C:\Users\myUser\AppData\Local\Apps\2.0\4THJAWJK.HYG\5N2YL58D.X55\ical..vsto_d6a691f9c1918311_0006.0000_ac7a074687bf4c5e )
the Data files as xml are copied into other location ( C:\Users\myUser\AppData\Local\Apps\2.0\4THJAWJK.HYG\5N2YL58D.X55\ical...dll_d6a691f9c1918311_0006.0000_none_a70d8116aa98d903 )
The question is do I have any configuration in visual studio which will force all the files to be copied into one folder after the install or is there any other way to do it?
Thank you.