views:

285

answers:

1

I want to include a folder in a setup project so when i deploy that setup the complete folder is also deployed to the install location

+1  A: 

Right click the setup project, and select "view" > "file system files", and from there you can access a lot of special folders like install folder, appdata, desktop etc, and add files to there, that will be created when you install the application. make sure to set the "alwayscreate" property to true.

David Hedlund
Be sure to set the files themselves to "build action = content" (see properties)
Hans Kesting