We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
var addin_infos = FrameworkApplication.GetAddInInfos(); StringBuilder sb = new StringBuilder(); foreach(var info in addin_infos) { sb.AppendLine($"Addin: {info.Name}"); sb.AppendLine($"Description {info.Description}"); sb.AppendLine($"ImagePath {info.ImagePath}"); sb.AppendLine($"Author {info.Author}"); sb.AppendLine($"Company {info.Company}"); sb.AppendLine($"Date {info.Date}"); sb.AppendLine($"Version {info.Version}");//Addin version sb.AppendLine($"FullPath {info.FullPath}"); sb.AppendLine($"DigitalSignature {info.DigitalSignature}"); sb.AppendLine($"IsCompatible {info.IsCompatible}"); sb.AppendLine($"IsDeleted {info.IsDeleted}"); sb.AppendLine($"TargetVersion {info.TargetVersion}");//Pro minimum version sb.AppendLine($"ErrorMsg {info.ErrorMsg}"); sb.AppendLine($"ID {info.ID}"); sb.AppendLine(""); }
This should be replace the weird daml parsing to get the version.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This should be replace the weird daml parsing to get the version.
The text was updated successfully, but these errors were encountered: