I have a .NET application debug folder but not the complete visual studio solution. I am trying to generate a wix installer from this.
Things tried
:
I created a project called setup
using WIX toolset.
In my .net solution, there are now two projects, the main project helloWorld
and the wix project setup
. Inside the setup
I added the reference of helloWorld
and it worked fine. I am able to create the installer for my helloWorld
project.
Here, I added the reference of the application project for which we want to generate the installer.
Problem:
As I have only application's - debug folder(i.e the application's .exe , .exe.config and other files) and not the complete visual solution. I am not able to generate the WIX installer from it.
Question
:
- Is it possible to generate WIX installer from debug folder without having the complete visual studio solution?
- If possible, are there any document or things I can try?