Code Maverick
Code Maverick

Reputation: 20415

TFS 2013 is not copying build output to drop folder

We have just upgraded from VS 2010 / TFS 2010 to VS 2013 / TFS 2013.

Our old custom build definitions no longer work. I am trying to simply create a new build definition that builds our solution and then copies it to an output folder as you can see below:

enter image description here

However ... it doesn't copy anything there but a logs directory:


enter image description here


Here's my build result:

enter image description here

What am I doing wrong here?

Upvotes: 2

Views: 2941

Answers (2)

MaartenVds
MaartenVds

Reputation: 643

I had the same issue, only logs folder in the output (TFS2013). I solved it by setting:

Process tab -> 2 Build -> 4 Output location to SingleFolder (previously it said AsConfigured).

Upvotes: 0

Just TFS
Just TFS

Reputation: 4787

Ok in the process tab, where you select the sln to build you can specify the configuration and platform, set as per your sln file or leave blank. In vs right click your sln and look at the configuration, see what settings you have and replicate in the build definition. I.e. debug anycpu, release x64

Upvotes: 2

Related Questions