Thanks, I'm aware of this feature however doesn't solve what I need.
NGen.exe is a tool in .NET framework which can create native images of assemblies. This is important to improve startup time of deployed application on target machine.
Basically I have around 12 assemblies and I need to execute for each assembly command "NGen.exe <assembly_path>", I am wondering how such a script would look like.
This is quite common requirement for any .NET deployment and I was a little surprised that Advanced Installer offers a neat way to install assemblies into GAC but doesn't have any in-built way to NGen them as well.