I have an OData Web Api service which I am deploying as a cloudservice. I also have an website which is created with some grunt tasks which create a dist folder with all the compiled stuff in it.
What I now want to do is add this folder to the Cloudservice project. I already tried what is suggested here, but this will only copy the folder into the approots of the cloudservice, not in sitesroot/0/. So the website is not accessible when deployed.
How can I add an folder while building to my Cloud Service so it is an folder that is accessible from IIS? For example, if I want my dist folder to be accessible as: http://mysite.cloudapp.net/dist/ or http://mysite.cloudapp.net/client/
I could add it to the WebRole project with the OData service, but this folder is a "moving target", there will be files added and removed, so hard adding it to the WebRole project will be most inconvenient.