I have a Web API 2 project with help pages that runs fine locally but throws this error when I push it to Azure:
Method not found: 'System.String System.String.Format (System.IFormatProvider, System.String, System.Object)
I temporarily turned custom errors off so full stack trace can be seen here
The error is originating from this line of code:
string selectExpression = String.Format(CultureInfo.InvariantCulture, MethodExpression, GetMemberName(reflectedActionDescriptor.MethodInfo));
See Line 96 here
The full source code is available on GitHub
I'm not even sure where to go with this one.