Hi,
I have an mvc / webapi application which references a subproject (output: dll) which contains text files that are required at runtime. The files are marked as "Content" and are copied to output directory if they are newer than the existing ones. Now if I build my application and look inside the bin folder I can see the files from the sub project have been copied there -> running the project locally works fine. If I use the publish wizard and publish to a local folder the content files from the sub project are not copied. Deploying the project this way would result in a runtime exception since the files are not found.
What setting am I missing to get this working? I am using Visual Studio 2015.
Kai