Stephen Gross
Stephen Gross

Reputation: 5714

What's the simplest possible way to deploy a WPF application?

I've got a WPF application, developed using TFS 2010. I figured out how to get the continuous integration build basically working. On success, I want the build copied to a network location. It's not clear to me if I should be using the "drop location" or "publish" options. I really just want the simplest possible deployment: straight copy of build output.

Is there a straight-forward way to do this in TFS 2010?

Upvotes: 0

Views: 524

Answers (1)

Nick Nieslanik
Nick Nieslanik

Reputation: 4458

Sounds like you want to use the 'This Build copies output to drop folder' option in the Build Defaults tab of a Build Definition that uses the out-of-the-box Default Template workflow. This will copy everything from your build's output including the symbols for debugging, etc. I'd recommend do this if you want the simplest way to copy the application to a network share as you stated above.

Upvotes: 1

Related Questions