views:

58

answers:

1

Hi,

I have to extend a existing VS2008 project which includes many separate WiX 3.0 projects.
My concern is:

I would like to extend some of the VS-projects and make minor changes in the classes by overwriting them. Can I also extend the existing WiX project by inheritance?
I ask this because the existing WiX project is very large and complicated. So I want to make a WiX-project with only my modifications as easy as possible.

Help would be appreciated.

Thanks in advance.

John

A: 

Wix doesn't know about the classes in your project. It only knows which files (and some other things like registry entries and shortcuts) that need to be installed.

So unless you are going to add new libraries to the project you should not have to make any changes to the wix files.

Wim Coenen
I have to add a modified dll. But unfortunately I can't edit the existing original setup project. So I have to create a new one.I read in the manuals about updating a existing project. I will try this first. Thanks for the answer.
John Baxter