Years ago I wrote an addin to do specific things I want in SSMS. I use it all the time and have gone through the pain of working out how to get it running again each time a new version of SQL server breaks the addin model.
I've now installed SSMS 2016 side by side with 2014, but despite a lot of searching I can find nothing about how to update addins for 2016 and I have not found a way to do it. My addin continues to work in 2014.
To be clear, my addin uses the common approach of a class that implements IDTExtensibility2 and IDTCommandTarget:
public partial class SSMSAddin : IDTExtensibility2, IDTCommandTarget
{
/// <summary>Implements the OnConnection method of the IDTExtensibility2 interface. Receives notification that the Add-in is being loaded.</summary>
/// <param term='application'>Root object of the host application.</param>
/// <param term='connectMode'>Describes how the Add-in is being loaded.</param>
/// <param term='addInInst'>Object representing this Add-in.</param>
/// <seealso class='IDTExtensibility2' />
public void OnConnection(object application, ext_ConnectMode connectMode, object addInInst, ref Array custom)
{
.
.
.
}
.
.
.
}
plus an XML configuration file (.addin) placed in one of the locations listed in the LookInFolders registry key such as
%APPDATA%\Microsoft\MSEnvShared\Addins
Evidently SSMS 2016 introduces changes such that existing addins will not work without some kind of rewrite. Also it seems it no longer uses the traditional .addin configuration file, as its registry entries no longer include the LookInFolders registry key which older versions use to find it. I read in the first of the two linked questions below that SSMS 2016 uses a new interface for addins, based on Visual Studio 2015 Shell, but I was unable to find any details of how to use the new interface or update legacy addin code.
Note: there are a couple of related SE questions Does the Poor Man's T-SQL formatting add-in for Management Studio 2012 work in Management Studio 2016? and SQL Server 2016 Plugins not working but they are different questions, people wanting to make third-party addins work. This question is about how to change my own addin to make it work in SSMS 2016.