Get the version number
To get the version number of Next Design, use the Version property of the IApplication object.
public void GetVersion(ICommandContext c, ICommandParams p)
{
var version = c.App.Version;
c.App.Window.UI.ShowMessageBox($"Version {version}", "Sample");
}