Reputation: 333
What is the right way to version assemblies for different versions of .NET?
For example, if I have an assembly foo.dll and I produce a version for .NET 2.0 and a version for .NET 4.0, what is the best option:
Upvotes: 1
Views: 193
Reputation: 41253
I'll go with the same short name and different versions. That's what the Framework does so people using .NET should already understand this.
Upvotes: 1