Attempting to build an Azure Cloud Services project via MSBuild emits the following error. As far as I was aware the Worker Role (Nodejs) projects do not generate an executable file, nor can I find any reference to one in the targets/project file.
Any ideas how I can workaround this?
Comments: Well all that appears to be required is having `WorkerRoleName.exe` in the project root folder as the build targets tries to copy this to the output folder. All that's needed here is to add a fake `WorkerRoleName.exe` file to the project root folder, in my case I already have an `AfterBuild` target that copies linked files into their respective locations so adding a link to `WorkerRoleName.exe` did the job.
Any ideas how I can workaround this?
Comments: Well all that appears to be required is having `WorkerRoleName.exe` in the project root folder as the build targets tries to copy this to the output folder. All that's needed here is to add a fake `WorkerRoleName.exe` file to the project root folder, in my case I already have an `AfterBuild` target that copies linked files into their respective locations so adding a link to `WorkerRoleName.exe` did the job.