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.

Once you generate CodeContract assemblies for an assembly containing interfaces, how do consumers of the interface use/make us of, the reference assemblies. Do you reference the "reference" assemblies directly, are do you simply co-locate the reference assemblies in some know location relative to the assembly containing the interfaces in question?

Thanks

share|improve this question

1 Answer

up vote 1 down vote accepted

As far as I'm aware, you just colocate the contract assemblies with the "real" assemblies, and the Code Contracts tool chain picks them up automatically.

share|improve this answer
So say I reference a assembly containing interfaces that I have generated code contracts for in a reference assembly. The reference to the interface assembly is "copy local". Where does the code contracts assembly go? – Xhalent Mar 24 '11 at 11:49
@Xhalent: I would expect it to be picked up from the original location, to be honest. I could be disappointed though :( – Jon Skeet Mar 24 '11 at 11:50
You're right, but I didn't find it that clear from the documentation. I have blogged about getting this work:xhalent.wordpress.com/2011/03/24/… – Xhalent Mar 24 '11 at 12:25

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.