I have a WPF application that builds fine, I can even publish it (localhost) using ClickOnce - no problem.
I want to create a Team build that will update the ClickOnce site, but can't find anyone that has done this or knows how.
Any ideas?
I have a WPF application that builds fine, I can even publish it (localhost) using ClickOnce - no problem.
I want to create a Team build that will update the ClickOnce site, but can't find anyone that has done this or knows how.
Any ideas?
I was able to use this code here to get what I wanted out of this: http://www.imaginaryrealities.com/post/2009/03/29/Updating-a-ClickOnce-manifest-using-MSBuild.aspx
This was a little too much for me (we aren't signing our manifests, for example), but it'll definitely get you most of the way there.
The only thing missing is copying the files to your webserver once they are all packaged, but if you know anything about MSBuild, you ought to be fine there.
Also, be sure and use "MSBuild" when doing searches for this kind of thing... "Team Build" will generally only get you marketing material.
Good luck!