If you mean moving between assemblies:
For existing inline code, you must add:
[assembly:TypeForwardedTo(typeof(SomeNamespace.TheControl))]
to the original assembly (which no longer contains TheControl ). Then the CLR will sort everything for you for existing built code without the need to update links.
However, to build the code, you still need to update the links; I do not think that vanilla VS has a built-in version.
source share