How to create multiple C++ custom actions in singl

2019-09-07 18:43发布

问题:

Is there anyway to make multiple C++ custom actions in single C++ custom action project.
I'm using WiX Toolset v3.10 and Visual Studio 2015.
I guess it may be done with C# but i don't want to use C# and .Net for my custom actions.
I just want to create single .dll for all of my custom actions.
Is this even possible? If possible can you give me an example?
Any help would be appreciated. Thank you!

回答1:

I would look through this WiX source code for examples on writing C++ custom actions.

https://github.com/wixtoolset/wix3/tree/develop/src

Look at: wix3 / src / ext / ca / wixca / dll /



标签: c++ wix