Re: [WiX-users] obain the name of components using msi/wix functions

2013-03-30 Thread mark222
I have tried to open the msi file using this code: string msiFile = "MyInstallation.msi"; var session = Installer.OpenPackage(msiFile, false); var language = session.Language; var features = session.Features; foreach (var feature in features) { var name = feature.Name; var description = fe

[WiX-users] DTF Get Feature infos from msi package

2013-03-30 Thread Marco Tognacci
I need to extract feature infos like Title and description from an msi package, localized with different languages.I have seen the DTF samples like WiFile where is described how to read package infos creating new InstallPackage.How can I get feature infos? Is there some class like InstallFeature