Can NGEN be used with Azure Websites?

asp.net-mvc, azure, azure-web-app-service, ngen

Solution

Will things blow up if you NGEN? No.

Will you get a benefit from NGEN? No. If your build system differs from the Azure server (which almost certainly does), the runtime will simply re-JIT things on the server.

Problem

After much research I still cannot find the answer to this question. So can one NGEN one's ASP.NET MVC3 application which is deployed in Azure Websites, in a 32bit "Basic" or "Standard" instance? Thanks.

Original source