Hi I have a basic WixSharp installer for a simple .Net 8 WinForms project. I have this in the setup program:
var project = new ManagedProject($"{productName}",
new Dir($@"%ProgramFiles%{companyName}{productName}",
new Files(".")));
But it always installs to (x86). I tried using a different variable (ProgramW6432) instead of ProgramFiles but it fails compilation.