vote up 0 vote down star

I need a way to use MSBuild to publish a ClickOnce App to multiple PublishDir(s). I have four environment (dev, qa, model, prod) and need to generate seperate ClickOnce PublishDir(s) for each because the config files are different. One of the main issues is that MSBuild doesn't create a publish.htm file. Any help would be appreciated.

flag

1 Answer

vote up 2 vote down check

How about, as a one-time thing, manually creating the publish.htm files in the four locations?

At my company, we don't use the publish.htm file at all. But we do have different environments, so we let the build-script change app name, update location, server uri etc pre-build and the build it with target Publish. The output files are thereafter copied to the location of the environment in question.

We are a bit old and are doing this mostly in a cmd file, but I'm sure you could have 4 different msbuild targets that does the same job.

link|flag
This was the route I was going to take if there wasn't an easy way to gen the thing. – Jeremy E Jun 15 at 17:58

Your Answer

Get an OpenID
or

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