Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The C# dynamic type seems not to compile when UseHostCompilerIfAvailable is set to false. I have both the required references Microsoft.CSharp and System.Core in my project, but it refuses to recognize it. Using the integrated Visual Studio compiler works, however.

The offending line is:

dynamic obj = this.Engine.Operations.CreateInstance(pytype);
share|improve this question

1 Answer

up vote 1 down vote accepted

Never mind, it seemed that including the Microsoft.Scripting.Core assembly was the cause of this.

share|improve this answer
You should mark this as answered so that people know the question inst outstanding. – Sayed Ibrahim Hashimi Sep 21 '10 at 14:25
I couldn't before - had to wait two days. – rfw Sep 22 '10 at 5:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.