I have Azure Cloud Service project that written in C#. This project is contain Azure Worker Role.
My Worker Role is reference another project (in same solution) that hold a directory in it. In this directory there are 10 HTML files. All those files are marked with those settings (file settings):
Build Action: Content
Copy to output directory: Copy if newer
I build my worker role and those content files are located on this path: bin/release/my-files/
dir. So, my project configuration is looking good.
I publish my azure cloud service to Azure, and the content files not being uploaded. I verified that by connecting with remote desktop to the machine and check this path: "E:\approot". my content files are not there.
What should I do in order to upload those content files?
Update
Thanks for @Gaurav_Mantri comment, I've check the CSSX file and my content files are missing there. No I not wondering that my azure worker role is missing too after publish.
I also tried to change "Copy to output directory -> Copy always". Same result.