How do I obtain the version number of the calling web application in a referenced assembly?
I\'ve tried using System.Reflection.Assembly.GetCallingAssembly().GetName
Version version = new Version(Application.ProductVersion); string message = version.ToString();