views:

22

answers:

1

So I am trying to figure out if there is a way to define the files and assemblies I need deployed with a ClickOnce app, from within Visual Studio.

I would like to "Publish" the application and not have to make any more modifications with Mage. Especially for continuous integration.

Is this possible? Can I add something to the app.manifest file, to do this?

+1  A: 

You should be able to do this by adding a file to the project, and in the properties window, set the "Build Action" to "Content"

You may also have to set the "Copy to Output Directory" property as well.

(this is not tested using ClickOnce, but it works with other build and deploy methods)

Gabriel McAdams
Yes, it works also in ClickOnce on our Project.
Gamlor