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

Re: [WiX-users] Accessing MSI description / feature info from burn BootstrapperApplication

2013-03-29 Thread mark222
In this way it's possible to access the properties such as Title and Description in the current language of the msi, but if I have a multi language msi is there any simple way to read the localized Text and Description even for the other languages? I need to change the language of my installer from