VS2005 setup project

  • Thread starter Thread starter Mirs
  • Start date Start date
M

Mirs

Hi all,
I asked that before but since I couldn't see my post I'll do that again,
hoping that someone will refer to that also...
I use VS2005 and develop a setup project in order to distribute my C#
solution. Among all the tasks, I need the installation to invoke some exe.
What are the steps to achieve that?
Regards
Mirs
 
Hi all,
I asked that before but since I couldn't see my post I'll do that again,
hoping that someone will refer to that also...
I use VS2005 and develop a setup project in order to distribute my C#
solution. Among all the tasks, I need the installation to invoke some exe..
What are the steps to achieve that?
Regards
Mirs

Hi,

1. Add the exe project to the setup solution.
2. Select the setup project and right click and then select "add
project output".
This will add dependencies to your setup project.
I suggest you to use installer class instead of running exe file
during installation.
 
Back
Top