One of the performance recommendations for Entity Framework 6 is to ngen the assemblies to avoid them being JIT'd on application startup.
However, there is very little information about whether this should be done on the server where the application is running, or whether I should just deploy the generated EntityFramework.ni.dll files from my dev machine into my web application bin folder.
What is the recommended practise for this?