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 = feature.Description;
  var title = feature.Title;
}

but I need to open the msi file passing the mst or language to have
localized Text and Description, is there any way for doing this?



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/obain-the-name-of-components-using-msi-wix-functions-tp7584759p7584773.html
Sent from the wix-users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Own the Future-Intel(R) Level Up Game Demo Contest 2013
Rise to greatness in Intel's independent game demo contest. Compete 
for recognition, cash, and the chance to get your game on Steam. 
$5K grand prize plus 10 genre and skill prizes. Submit your demo 
by 6/6/13. http://altfarm.mediaplex.com/ad/ck/12124-176961-30367-2
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to