I need to allow users to select an assembly in much the same way Visual Studio does. Either from the GAC, or from another location in the file system.
A simple OpenFileDialog will not be sufficient, because switching to c: \ windows \ assembly does not allow access to the actual locations of the assembly files in the GAC.
I am not writing a Visual Studio plugin, so I cannot use DTE.
How should I do it?
source
share