Alexander
Alexander

Reputation: 20234

WiX toolset: Custom Actions that require .NET 4.5

I am writing custom actions for Advanced Installer using the WiX toolset.

The custom action project is .NET framework 4 by default, but I would like to use dependencies that are only compatible to .NET 4.5.

My installer is set to require .NET 4.5.2, so it is safe to assume that when the custom actions are executed, .NET 4.5.2 or higher is available.

Can I safely increase the .NET version, or will this break the installer?

Upvotes: 0

Views: 669

Answers (1)

Bogdan Mitrache
Bogdan Mitrache

Reputation: 11023

Yes, you can increase the .NET version required. As long as you have set the launch condition in your Advanced Installer project for that version of .NET the MSI will not run if that version of .NET or a higher one is not found on the machine.

If you have multiple builds in your project, make sure the launch condition is set for all.

Upvotes: 1

Related Questions