I'm creating an installation package using visual studio setup project. it all went well and the installation package actually installs my windows app and it runs but when the app attempts to write to a settings.xml file (inside the installation folder and it does not exists previously) i get the access to path [installation folder path]\settings.xml is denied! how can grant permission to the installed app to create\overwrite to a file inside the installation package. another thing my app does is access the clipboard (takes or writes data to clipboard) so do i need to grant my app this permission too and if so how do I tell the setup project to give my app (it installs) these permissions?
p.s. in my original app I set it to full trust p.s. i'm using visual studio 2008
thanks in advance