473,513 Members | 2,456 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Deploy using a Third-Party Installer

AGP
I resisted for many years but I've just written my first app in .NET2005
and am looking to deploy my app with a third-party installer. ClickOnce
and the VS Installer do not meed my needs and I am already well versed
in another installer.

My question is mainly dealing with deploying the app dependecies. I think
I know where im headed but could use the advice of others who have had
more experience. Should i just take all the files in the \Release\ folder
and
deploy those. There are two DLLs which are listed as local and another one
which is non-local in the References. I can change if its local or not but I
dont
understand what makes a DLL local by default.

Anyway thats the point where im at after looking at countless artciles which
all seem to focus on the bult-in VS installer and installshield.

AGP
Oct 29 '07 #1
6 2473
On Mon, 29 Oct 2007 12:58:25 GMT, "AGP" <si**********@softhome.net>
wrote:
>I resisted for many years but I've just written my first app in .NET2005
and am looking to deploy my app with a third-party installer. ClickOnce
and the VS Installer do not meed my needs and I am already well versed
in another installer.

My question is mainly dealing with deploying the app dependecies. I think
I know where im headed but could use the advice of others who have had
more experience. Should i just take all the files in the \Release\ folder
and
deploy those. There are two DLLs which are listed as local and another one
which is non-local in the References. I can change if its local or not but I
dont
understand what makes a DLL local by default.

Anyway thats the point where im at after looking at countless artciles which
all seem to focus on the bult-in VS installer and installshield.

AGP
Take a look at the Wix installer --- it's much more flexibe than the
built in Visual Studio setup tool, and allow syou to do much more.

http://www.wix.sourceforge.net

--
http://bytes.thinkersroom.com
Oct 29 '07 #2
Thank you for the info but I am not looking for an installer. Like I
said i already am well versed with another installer and all I'm
looking for is a methodology to deploy my app. My idea was to simply
deploy all files in the /Release folder. Is there a way to configure
my app such that it looks for the info in a /bin/ or /Support/ folder
rather than directly from the EXE path. I think I can just copy the
DLLs into the same path as the app and it should work on the target
system correct?

AGP

Oct 29 '07 #3
On Mon, 29 Oct 2007 13:35:48 -0700, DIOS <si******@gmail.comwrote:
>Thank you for the info but I am not looking for an installer. Like I
said i already am well versed with another installer and all I'm
looking for is a methodology to deploy my app. My idea was to simply
deploy all files in the /Release folder. Is there a way to configure
my app such that it looks for the info in a /bin/ or /Support/ folder
rather than directly from the EXE path. I think I can just copy the
DLLs into the same path as the app and it should work on the target
system correct?

AGP
Perhaps I'm not understanding your problem -- from what I understand
you want to be able to deploy some DLLs with your application that are
not in the standard bin folder, correct?

It this is so I don't understand your reluctance to use an installer
of some sort. How will you deal with issues like

1) Allowing the user choice of where to install the files
2) Control the versioning of the application for support issues
3) Where applicable, register assemblies in the Global Assembly Cache?
4) Allow the user to cleanly uninstall the application?

--
http://bytes.thinkersroom.com
Oct 30 '07 #4
AGP

"Rad [Visual C# MVP]" <ra*@nospam.comwrote in message
news:m4********************************@4ax.com...
On Mon, 29 Oct 2007 13:35:48 -0700, DIOS <si******@gmail.comwrote:
>>Thank you for the info but I am not looking for an installer. Like I
said i already am well versed with another installer and all I'm
looking for is a methodology to deploy my app. My idea was to simply
deploy all files in the /Release folder. Is there a way to configure
my app such that it looks for the info in a /bin/ or /Support/ folder
rather than directly from the EXE path. I think I can just copy the
DLLs into the same path as the app and it should work on the target
system correct?

AGP

Perhaps I'm not understanding your problem -- from what I understand
you want to be able to deploy some DLLs with your application that are
not in the standard bin folder, correct?

It this is so I don't understand your reluctance to use an installer
of some sort. How will you deal with issues like

1) Allowing the user choice of where to install the files
2) Control the versioning of the application for support issues
3) Where applicable, register assemblies in the Global Assembly Cache?
4) Allow the user to cleanly uninstall the application?

--
http://bytes.thinkersroom.com
yes it seems like I haven not made myself clear. I am not asking for advice
on installers.
I have one already and am well versed in building installations with this
specific system.
My inquiries have to deal with how to deploy my app and its dependencies.
bascially
like pseudo code so that i can replicate it with my installer. I think I
understand that i can deploy
my exe along with its DLLs and place them in the same direcory and it should
work. Now
if i wan to deploy the dependencies to another folder say a /Support/ folder
then I have to
regsiter in the GAC. Is that correct? My second inquiry is what files do i
deploy. As I understood
it I just deploy all files in my projects /bin/Release/ folder. is that
correct?

AGP
Oct 31 '07 #5
I agree
"AGP" <si**********@softhome.netwrote in message
news:Eu*******************@newssvr29.news.prodigy. net...
>
"Rad [Visual C# MVP]" <ra*@nospam.comwrote in message
news:m4********************************@4ax.com...
>On Mon, 29 Oct 2007 13:35:48 -0700, DIOS <si******@gmail.comwrote:
>>>Thank you for the info but I am not looking for an installer. Like I
said i already am well versed with another installer and all I'm
looking for is a methodology to deploy my app. My idea was to simply
deploy all files in the /Release folder. Is there a way to configure
my app such that it looks for the info in a /bin/ or /Support/ folder
rather than directly from the EXE path. I think I can just copy the
DLLs into the same path as the app and it should work on the target
system correct?

AGP

Perhaps I'm not understanding your problem -- from what I understand
you want to be able to deploy some DLLs with your application that are
not in the standard bin folder, correct?

It this is so I don't understand your reluctance to use an installer
of some sort. How will you deal with issues like

1) Allowing the user choice of where to install the files
2) Control the versioning of the application for support issues
3) Where applicable, register assemblies in the Global Assembly Cache?
4) Allow the user to cleanly uninstall the application?

--
http://bytes.thinkersroom.com

yes it seems like I haven not made myself clear. I am not asking for
advice on installers.
I have one already and am well versed in building installations with this
specific system.
My inquiries have to deal with how to deploy my app and its dependencies.
bascially
like pseudo code so that i can replicate it with my installer. I think I
understand that i can deploy
my exe along with its DLLs and place them in the same direcory and it
should work. Now
if i wan to deploy the dependencies to another folder say a /Support/
folder then I have to
regsiter in the GAC. Is that correct? My second inquiry is what files do i
deploy. As I understood
it I just deploy all files in my projects /bin/Release/ folder. is that
correct?

AGP

Nov 13 '07 #6
AGP
Hmm, you agree on what? Anyway, still researching this. Again I have
an installer system and Im looking for advice on what files in the /
Release/ folder of my project i need to deploy.

Rgds
AGP

On Nov 13, 7:57 am, "aDelfino" <wetry...@gmail.comwrote:
I agree"AGP" <sindizzy....@softhome.netwrote in message

news:Eu*******************@newssvr29.news.prodigy. net...
"Rad [Visual C# MVP]" <r...@nospam.comwrote in message
news:m4********************************@4ax.com...
On Mon, 29 Oct 2007 13:35:48 -0700, DIOS <sindi...@gmail.comwrote:
>>Thank you for the info but I am not looking for an installer. Like I
said i already am well versed with another installer and all I'm
looking for is a methodology to deploy my app. My idea was to simply
deploy all files in the /Release folder. Is there a way to configure
my app such that it looks for the info in a /bin/ or /Support/ folder
rather than directly from the EXE path. I think I can just copy the
DLLs into the same path as the app and it should work on the target
system correct?
>>AGP
Perhaps I'm not understanding your problem -- from what I understand
you want to be able to deploy some DLLs with your application that are
not in the standard bin folder, correct?
It this is so I don't understand your reluctance to use an installer
of some sort. How will you deal with issues like
1) Allowing the user choice of where to install the files
2) Control the versioning of the application for support issues
3) Where applicable, register assemblies in the Global Assembly Cache?
4) Allow the user to cleanly uninstall the application?
--
http://bytes.thinkersroom.com
yes it seems like I haven not made myself clear. I am not asking for
advice on installers.
I have one already and am well versed in building installations with this
specific system.
My inquiries have to deal with how to deploy my app and its dependencies.
bascially
like pseudo code so that i can replicate it with my installer. I think I
understand that i can deploy
my exe along with its DLLs and place them in the same direcory and it
should work. Now
if i wan to deploy the dependencies to another folder say a /Support/
folder then I have to
regsiter in the GAC. Is that correct? My second inquiry is what files do i
deploy. As I understood
it I just deploy all files in my projects /bin/Release/ folder. is that
correct?
AGP
Nov 17 '07 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1477
by: mqsash | last post by:
Hi Problem : Unable to deploy an assembly in IE, as a cab file. (Works fine when deployed as a dll ) Description : I have created a assembly (dll with no user interface)in C# which I deploy in...
2
5482
by: mqsash | last post by:
Hi Problem : Unable to deploy an assembly in IE, as a cab file. (Works fine when deployed as a dll ) Description : I have created a assembly (.dll) in C# which I deploy in IE. The dll name is...
2
2352
by: John Spiegel | last post by:
Hi all, I'm attempting to deploy a pretty simple web service to a shared web server that was built w/ Visual Studio. According to MSDN, I should be able to just copy the asmx and bin folder (w/...
0
2320
by: Robert Warnestam | last post by:
Hello, I have some problems deploying Crystal Reports. I'm using Visual Studio 2005 Beta 1. In this version Crystal Reports (9.7.3500.0) is included. I created a small test application...
2
1872
by: Nils Hedström | last post by:
I have a ASP.NET 1.1 project that I want to be able to deploy on my web-servers while they have real traffic (40 requests/second). When I copy the projects assembly in the bin-directory of the...
4
1692
by: meo | last post by:
Does .NET provide the way to deploy library to internal developer? I am trying to find the way to deploy a library file to developer for having integration to their application BUT the customer...
4
2278
by: Cirene | last post by:
What is the best way to deploy a website created with VS 2008? (Now that web deployment projects are delayed.) I want to be able to modify the web.config file on the website. Thanks!
2
2520
by: mfuribondo | last post by:
I have a solution with three projects in it. Two are windows forms applications and the third is a class library. I am trying to deploy the projects which use a single database located in one of...
6
10940
by: =?Utf-8?B?QW5kcmV3X2QxMjM=?= | last post by:
Here is my problem. I have an app that has over 9 web services. For years I had not issues with clickonce but now it looks like the build is missing XmlSerializers.dll.deploy. I did have this...
0
1637
by: stephen | last post by:
Hi, I am using Click Once Deploy to deploy an application.(this application has an .exe, .config, .xml files) and after deployment to a location, I checked for the files and all the files are...
0
7260
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7160
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7537
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
7525
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5685
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5086
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
3233
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
1
799
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
456
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.