How to update WIX Binaries setup

1

I currently have a project in asp mvc4, and there is a wix setup project generated;

Solution Explorer:

  • Projec1 (mvc)
    • Properties
    • References
    • Content
    • Controllers
      - ...
  • Project1.setup * (wix setup) *
    • References
    • Binaries
    • Product.wxs

It turns out that inside the Binaries folder of the setup I have the dll outdated and in the bin folder of the project1 they are updated to the latest version. How do I update the project.setup Binaries of the wix project?

    
asked by gvivetapl 27.04.2016 в 10:40
source

1 answer

1

I'm not sure it's a good idea to create an installer for a web project, but if the question is to update, it occurs to me you can help with Build Events

From the properties of the project you could create a copy command that takes the dlls of one project to the other's folder to update its content

Using Build Events in Visual Studio to Make Life Easier

    
answered by 27.04.2016 в 14:47