I have created an Azure Cloud Service (call it A) in Visual Studio 2013, using Azure SDK v2.6. The cloud service has a single role from project B, project B references project C, and project C references project D. Project D includes a content file called D.dll.config
. I have verified that when I build, the file D.dll.config
exists in D\bin\Debug\
, C\bin\Debug\
, and B\bin\Debug\
. However, when I run A in both the emulator and on Azure, my config file is absent.
On my local machine, this directory is A\csx\Debug\roles\B\approot\
. Does anyone know how to get the configuration file to be included with my cloud service? A brief explanation as to why it is not being included to begin with would also be appreciated.