Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to untangle a legacy system written with the CSLA framework. The contractors who originally wrote the software are long gone. I want to figure out what version of CSLA was used so that I can start to learn about that particular framework (and so understand the code). Is there an easy way to do this?

Edit Ideally, by looking for some feature of the CSLA that might indicate the version number.

share|improve this question

2 Answers

The change log is here if specifically the change log for 3.5 is here so look for the properties mentioned.

Edit - Actually isn't this just a matter of right clicking the DLL and viewing the details tab in properties? Should be listed there.

share|improve this answer

I would grab the free version of Telerik JustDecompile, or something similar to that, like Reflector.

These programs can tell you what references are contained within an assembly. (edit: with version information)

share|improve this answer

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.