I have simple project setup like:
var project = new Project(
myProduct,
new Dir(
Path.Combine(@"%ProgramFiles%", myCompany, myProduct),
new Files("*.*"),
...);
project.UI = WUI.WixUI_InstallDir;
...
If user changes install location, everything is installed in chosen location, but also empty directory 'C:\Program Files (x86)\myCompany' is created.
Is there some way to prevent creating of this empty directory?