Reputation: 20415
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:
However ... it doesn't copy anything there but a logs directory:
Here's my build result:
What am I doing wrong here?
Upvotes: 2
Views: 2941
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
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