Refactor idea: Extract MyExtensions extension methods
I have a large set of extensions defined in my MyExtensions script and use them quite a bit. Sometimes I'll want to share a script I developed but later realize I'm using some extensions that wouldn't be trivial to copy to the script.
Could a new refactoring be created to extract an extension method from MyExtensions and pull into the current script?
This would include any new types that the extension uses and returns and only bits relevant to its implementation. i.e., only copy the extension method but not necessarily everything in the extension class.
This would be extremely helpful to have as an option.