2

I have installed the Wix from Wix.codeplex and i created a setup file successfully for windows application and its works well.

Now i have a web app and i want to create a installer for my web app (service installer),i tried with creating a setup file by building the Wix-setup project after adding the reference of the web app projects/Files in the Wix project,but it didn't workout, is there any good resource i can follow or any help greatly appreciate!

Mohammed Abrar Ahmed
  • 2,290
  • 3
  • 15
  • 33

1 Answers1

1

Easy steps that creates a installer for you application

  1. create web application.
  2. build and publish.
  3. harvest the publish folder and thats creates me a .wxs file.
  4. create a setup project in the same solution of my web app.
  5. add .wxs from step3 to the setup project.
  6. build the setup project it create a .msi(installer) and .wixpdb file.
Mohammed Abrar Ahmed
  • 2,290
  • 3
  • 15
  • 33