MZ-Tools Articles Series: HOWTO: Get information about the loaded solution from a Visual Studio package.
July 2, 2014Following with the second and third strategies migrating from Visual Studio add-ins to packages, after defining and implementing an IHost interface, likely you will continue with an ISolution interface with properties like: public interface ISolution { bool IsOpen { get;} string Name { get;} string FullFileName { get;} … } Using the automation model (EnvDTE) […]