user316030
user316030

Reputation: 333

what is the right versioning strategy for different version of .NET

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

Answers (1)

Julien Lebosquain
Julien Lebosquain

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

Related Questions