1
Answer

how to provide option in installer to choose one out of two windows services to install?

PLN

PLN

15y
2.3k
1

Hi,
We have two windows services. We need to create an installer which gives the option to install either of the services.
Example:
Two services are WindowsServiceA and WindowsServiceB.
We need to create an Installer. This installer should give option to the user to install either WindowsServiceA or WindowsServiceB
I would be thankful if anyone provides help in doing this(in .net).
Answers (1)
0
red man

red man

NA 14 0 18y
Thanks a lot
0
Ganesh

Ganesh

NA 14 0 18y

1. Verify the namespace in Settings.cs. Say for example, if it is MyProject.Utilities, import this namespace where you are using. For example, if you are trying to get connectionstring in DataAccess.cs, then use "using MyProject.Utilities" in the top

2. You can get the connectionstring by the following code
Settings.Default. <name of your key>

note: you don't have to say Properties.Settings.Default

does this help? I had the same problem before but once I resolved namespaces conflict, everything started working. good luck