Use [Property] in my managed code signature? Basic MSI

101 views Asked by At

I cant seem to figure out how to use my [MyProperty] property inside of the custom method signature. I have tried [MyProperty], "[MyProperty]", "MyProperty". ALl i am left with is the actual string being passed and NOT the value of the property. I have tried immediate execution and differed execution in various areas of the sequence but i have found no solution.

I have also tried the "CustomActionData" method from here with no success. Anyone have a solution?

2

There are 2 answers

1
user616 On BEST ANSWER

I figured it out, my post is here with the explanation

0
Bogdan Mitrache On

Check out how to build custom actions in C# for MSI installers.

This shows how to get a DLL that will run in a standard MSI, no matter if you build it with Wix, InstallShield or Advanced Installer. It also shows how to get/set properties.

Additional info: