I've made a VSTO Excel Addin. I need to put in a label the version of my addin. I can get the assembly version,
Dim ver As String = MessageBox.Show(Globals.ThisAddIn.GetType().Assembly.GetName().Version.ToString())
With the Global class I can't retrive too the version of the publication...
Dim ver2 As String = Globals.ThisWorkbook.Application.Version
but I need to see the publication version. There is any way?