I have a asp.net mvc 4 application that has multiple area setup. However, this application uses multiple projects to make up this area as explained here to follow n-tier in the solution. The output path of these separate projects is set to the bin folder of the main mvc application which works fine.
When I publish this main app on file system as target, the Areas folder that is created in the directory only has HelpPage folder content but no area folders.
I would like to know how can I add their resources like views, .config files, scripts, content, etc. to the Areas folder on publish.
At the moment I'm doing this using a bat file which I think is not appropriate. I've read about using [ProjectName].wpp.targets to include files while publishing. Can anyone advice how to include folders which is not included in the project, different areas in this context.