vote up 1 vote down star

I have a clickonce application and i want to deploy 2 versions of the same application with different config files. So the package is published from the same solution but with changed configs to different urls: Example: App1 is launched at http://myserver/app1/myapp.application and app2 is launched at http://myserver/app2/myapp.application

However both urls launch the same app (the latest one published). Is this correct? Can what i want to do be done?

flag

3 Answers

vote up 0 vote down check

In Visual Studio go into properties and change the names of the application or their GUIDs. Then the respective clients will treat the applications as completely independent.

link|flag
This is correct though somewhat cumbersome. The code found at this url automates the process extremely well: blog.gatosoft.com/2006/04/… – alan Feb 12 at 23:56
vote up 1 vote down

An alternative to messing with the name or GUID is to bypass the actual app.config and use a simple XML file as the configuration. LINQ to XML makes this easy to do and you can key off of the executing context to pull the file location so the config files remain separate.

link|flag
vote up 0 vote down

Have a conditional test in the application for which URL it was launched from?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.