I have 2 solutions that I would like to consolidate into one

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi, I'm using vs2005, .net 2 for windows application. I have 2 solutions
that I would like to consolidate into and have just one installation .msi for
them, is this possible? So I just just copy and move one of the solution's
project file into the other one and create additional setup file in it?
Thanks.
 
Pucca,

From a high level view, that is how I would do it. Hopefully, there
isn't anything out of the ordinary that you are doing which would hinder you
in combining the two.
 
These are 2 are 2 separate stand-alone application. I don't necessary have
to combine them into 1 solution but what I need is a setup file(.msi) that
would install both application. Is there another way to do this besides
trying to merge them together? Thanks.
--
Thanks.


Nicholas Paldino said:
Pucca,

From a high level view, that is how I would do it. Hopefully, there
isn't anything out of the ordinary that you are doing which would hinder you
in combining the two.

--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Pucca said:
Hi, I'm using vs2005, .net 2 for windows application. I have 2 solutions
that I would like to consolidate into and have just one installation .msi
for
them, is this possible? So I just just copy and move one of the
solution's
project file into the other one and create additional setup file in it?
Thanks.
 
We have created an installer (setup project) which has a handful of DLLs to
support a main application, and several helper applications. I will point
out that we had a single target directory. This may present some issues, I
suppose. I know we have also spun off separate installers, which have their
own target. This may work for you. It should also be pointed out that you
may have multiple installer projects in your solution.

Pucca said:
These are 2 are 2 separate stand-alone application. I don't necessary have
to combine them into 1 solution but what I need is a setup file(.msi) that
would install both application. Is there another way to do this besides
trying to merge them together? Thanks.
--
Thanks.


Nicholas Paldino said:
Pucca,

From a high level view, that is how I would do it. Hopefully, there
isn't anything out of the ordinary that you are doing which would hinder you
in combining the two.

--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Pucca said:
Hi, I'm using vs2005, .net 2 for windows application. I have 2 solutions
that I would like to consolidate into and have just one installation .msi
for
them, is this possible? So I just just copy and move one of the
solution's
project file into the other one and create additional setup file in it?
Thanks.
 
My manager wanted these 2 applications to be 2 stand-alone applications.
After these 2 are developed as 2 separated applications, now he would like me
to create a MS installation setup file that would install these 2 applicatons
with one executable so we can put it on the CD and the user would only need
to run " one" setup file to install both applications. Is this possible? If
not, any alternative ways to get this done like some kind of batch file or
something?
--
Thanks.


ModelBuilder said:
We have created an installer (setup project) which has a handful of DLLs to
support a main application, and several helper applications. I will point
out that we had a single target directory. This may present some issues, I
suppose. I know we have also spun off separate installers, which have their
own target. This may work for you. It should also be pointed out that you
may have multiple installer projects in your solution.

Pucca said:
These are 2 are 2 separate stand-alone application. I don't necessary have
to combine them into 1 solution but what I need is a setup file(.msi) that
would install both application. Is there another way to do this besides
trying to merge them together? Thanks.
--
Thanks.


Nicholas Paldino said:
Pucca,

From a high level view, that is how I would do it. Hopefully, there
isn't anything out of the ordinary that you are doing which would hinder you
in combining the two.

--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Hi, I'm using vs2005, .net 2 for windows application. I have 2 solutions
that I would like to consolidate into and have just one installation .msi
for
them, is this possible? So I just just copy and move one of the
solution's
project file into the other one and create additional setup file in it?
Thanks.
 
What about "PostBuildEvent" property in the Setup project? What is this for?
Can I configure it to run the 2nd application's setup command in here?
--
Thanks.


ModelBuilder said:
We have created an installer (setup project) which has a handful of DLLs to
support a main application, and several helper applications. I will point
out that we had a single target directory. This may present some issues, I
suppose. I know we have also spun off separate installers, which have their
own target. This may work for you. It should also be pointed out that you
may have multiple installer projects in your solution.

Pucca said:
These are 2 are 2 separate stand-alone application. I don't necessary have
to combine them into 1 solution but what I need is a setup file(.msi) that
would install both application. Is there another way to do this besides
trying to merge them together? Thanks.
--
Thanks.


Nicholas Paldino said:
Pucca,

From a high level view, that is how I would do it. Hopefully, there
isn't anything out of the ordinary that you are doing which would hinder you
in combining the two.

--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Hi, I'm using vs2005, .net 2 for windows application. I have 2 solutions
that I would like to consolidate into and have just one installation .msi
for
them, is this possible? So I just just copy and move one of the
solution's
project file into the other one and create additional setup file in it?
Thanks.
 
Yes, you may include two executables in one installer.

Pucca said:
My manager wanted these 2 applications to be 2 stand-alone applications.
After these 2 are developed as 2 separated applications, now he would like me
to create a MS installation setup file that would install these 2 applicatons
with one executable so we can put it on the CD and the user would only need
to run " one" setup file to install both applications. Is this possible? If
not, any alternative ways to get this done like some kind of batch file or
something?
--
Thanks.


ModelBuilder said:
We have created an installer (setup project) which has a handful of DLLs to
support a main application, and several helper applications. I will point
out that we had a single target directory. This may present some issues, I
suppose. I know we have also spun off separate installers, which have their
own target. This may work for you. It should also be pointed out that you
may have multiple installer projects in your solution.

Pucca said:
These are 2 are 2 separate stand-alone application. I don't necessary have
to combine them into 1 solution but what I need is a setup file(.msi) that
would install both application. Is there another way to do this besides
trying to merge them together? Thanks.
--
Thanks.


:

Pucca,

From a high level view, that is how I would do it. Hopefully, there
isn't anything out of the ordinary that you are doing which would hinder you
in combining the two.

--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Hi, I'm using vs2005, .net 2 for windows application. I have 2 solutions
that I would like to consolidate into and have just one installation .msi
for
them, is this possible? So I just just copy and move one of the
solution's
project file into the other one and create additional setup file in it?
Thanks.
 
You could do your second install here. I have used this to register an
extension to a commercial product (think of a toolbar to IE/Outlook). You
might also run a registration step where the user sends an email to the
manufacturer with comments.

Pucca said:
What about "PostBuildEvent" property in the Setup project? What is this for?
Can I configure it to run the 2nd application's setup command in here?
--
Thanks.


ModelBuilder said:
We have created an installer (setup project) which has a handful of DLLs to
support a main application, and several helper applications. I will point
out that we had a single target directory. This may present some issues, I
suppose. I know we have also spun off separate installers, which have their
own target. This may work for you. It should also be pointed out that you
may have multiple installer projects in your solution.

Pucca said:
These are 2 are 2 separate stand-alone application. I don't necessary have
to combine them into 1 solution but what I need is a setup file(.msi) that
would install both application. Is there another way to do this besides
trying to merge them together? Thanks.
--
Thanks.


:

Pucca,

From a high level view, that is how I would do it. Hopefully, there
isn't anything out of the ordinary that you are doing which would hinder you
in combining the two.

--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Hi, I'm using vs2005, .net 2 for windows application. I have 2 solutions
that I would like to consolidate into and have just one installation .msi
for
them, is this possible? So I just just copy and move one of the
solution's
project file into the other one and create additional setup file in it?
Thanks.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top