When I open the properties window of one of the referenced dlls in my project in Visual Studio I see a Version and also a runtime version .

Actually it is Rhino.Mocks library I am checking. And I see

  • Runtime Version : v2.0.50727
  • Version : 3.6.0.0

What is the difference? (Does it mean I am not able to use 3.6.0.0 of the Rhino Mocks?)

link|improve this question

68% accept rate
please read the description for tags you use. [assembly] is about assembly language progamming. use [.net-assembly] instead. – noah1989 Dec 20 '11 at 11:03
Thanks for the advice; I have not noticed that tag's existence before. – pencilCake Dec 21 '11 at 8:52
on the other hand.. I get 2 reputation for retagging :D – noah1989 Dec 21 '11 at 10:18
feedback

1 Answer

up vote 4 down vote accepted

Runtime is the version of the CLR (or .NET framework?) the DLL needs (usually as a minimum), version is the DLL's version.

So long as you have the minimum runtime installed, it should be usable. However as a general rule it is usually best to select the latest version of the library for the latest runtime support etc.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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