I want to create a Visual Studio 2010 setup project that deploys some files to a folder where my application can use it from. I want it so, that all users h
Visual Studio setup projects do not have a predefined folder for common Application Data. However, you can install files in it like this:
[CommonAppDataFolder]
During install CommonAppDataFolder will be automatically resolved by Windows Installer.
A more specific solution might be to set the DefaultLocation property to:
[CommonAppDataFolder][Manufacturer]\[ProductName]
Manufacturer and ProductName will be resolved from the values you assign to the corresponding properties of the setup project.