I'm using a type provider to create a versioned api, where you can choose to select older versions of a component to call than the current lastest version.
At the moment, it puts these in a namespace that looks something like:
Provided.ComponentName.VersionName(... this is the type constructor ...)
ComponentName
is a namespace at the moment, if that makes a difference.
Once I've built all the specific versions of the component, I'd also like to expose:
Provided.ComponentName.Latest(... constructor ...)
as either a static method or a type alias that will return an instance of the most recent version.
What's the best way of doing this?