What's the best way to get TFS to output each project to its own directory? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T03:06:41Zhttp://stackoverflow.com/feeds/question/698855http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/698855/whats-the-best-way-to-get-tfs-to-output-each-project-to-its-own-directory3What's the best way to get TFS to output each project to its own directory?Schnapple2009-03-30T20:15:04Z2009-07-24T13:25:34Z
<p>I'm putting a large codebase into Team Foundation Server. I would like the build process to create a "ready to deploy" build of our projects.</p>
<p>The normal way we've been doing this is to have each project's output be in its own folder. So, for example, we wind up with something like</p>
<pre><code>C:\project1\
assembly1.dll
assembly2.dll
project1.exe
project1.exe.config
C:\project2\
assembly2.dll
assembly3.dll
project2.exe
project2.exe.config
C:\project3\
assembly1.dll
assembly3.dll
project3.exe
project3.exe.config
</code></pre>
<p>Which is the way we like it.</p>
<p>TFS, though, seems to want to stick everything in the same directory.</p>
<pre><code>C:\output\
assembly1.dll
assembly2.dll
assembly3.dll
project1.exe
project1.exe.config
project2.exe
project2.exe.config
project3.exe
project3.exe.config
</code></pre>
<p>which, although it saves some amount of disk space (the assemblies are only there one time each) is not how we want it. </p>
<p>What's the best way to specify where TFS/MSBuild should put the output files? Do I need to edit sln/csproj files individually to achieve this or can I do it in the TFSBuild.proj file? (i.e., in a MSBuild-specific file)</p>
http://stackoverflow.com/questions/698855/whats-the-best-way-to-get-tfs-to-output-each-project-to-its-own-directory/699298#699298-1Answer by John Saunders for What's the best way to get TFS to output each project to its own directory?John Saunders2009-03-30T22:31:08Z2009-03-30T22:31:08Z<p>When you say, "ready to deploy", do I take it that your current deployment scripts copy binaries from each project output folder? If so, then why not simply change them to copy from the single folder that TFS copies binaries into? It's actually more convenient for deployment, since there's only one folder.</p>
http://stackoverflow.com/questions/698855/whats-the-best-way-to-get-tfs-to-output-each-project-to-its-own-directory/707710#7077100Answer by epaulsen for What's the best way to get TFS to output each project to its own directory?epaulsen2009-04-01T23:17:49Z2009-04-01T23:17:49Z<p>You could have one buildscript per project, that would do exactly what you want.
Just create a new TFSBuild file, add the projects you want to have built to the itemgroup(in the order you want them built), set where you want the output to be. This is done by overriding the - property in your TFSBuild file. </p>
<p>But I also agree with the previous poster - why don't you just run with a single build script, and add a zip-task at the end? Maintaining a buildscript per project does add maintenance overhead...</p>
http://stackoverflow.com/questions/698855/whats-the-best-way-to-get-tfs-to-output-each-project-to-its-own-directory/711666#711666-1Answer by Richard Banks for What's the best way to get TFS to output each project to its own directory?Richard Banks2009-04-02T21:18:56Z2009-04-02T21:18:56Z<p>Without commenting on the reason why you'd want to do this, I'll just say that it's highly unusual :-)</p>
<p>Now, when Team Build compiles code it sets the location for all compilation output to a single folder ($BinariesRoot) before it then does the copy to the final drop location. </p>
<p>What this means is that when the compile occurs you won't get a xxx\bin\release folder created for each project. All compilation output is placed directly in that binariesroot folder. This means you can't easily split out your output on a project by project basis.</p>
<p>If you're building a solution you're probably going to find changing this a lot harder than if you build project by project, but if you want to try something then as a starting point you might want to consider overriding the team build default behaviour. </p>
<p>If you want to do this then you'll either need to change the Microsoft.TeamFoundation.Build.targets files (which I would strongly advise against) or override the CoreCompileSolution target in your Team Build proj file.
The easiest way would be to copying the CoreCompileSolution target from the TFS build.targets file and changing the values where the $(teambuildoutdir) and $(teambuildpublishdir) properties are passed MSBuild.</p>
<p>That said, I haven't personally tried it so I don't know what other wrinkles you might come up against.</p>
<p>Hope that helps!</p>
http://stackoverflow.com/questions/698855/whats-the-best-way-to-get-tfs-to-output-each-project-to-its-own-directory/721113#721113-1Answer by crowleym for What's the best way to get TFS to output each project to its own directory?crowleym2009-04-06T11:55:20Z2009-04-07T03:11:57Z<p>You achieve this by overriding the default CoreDropBuild target implementation.</p>
<p>In your TFSBuild.proj file (by default stored under TeamBuildTypes/<Build Type>) add the following target:</p>
<pre><code> <!-- Override default implementation -->
<Target
Name="CoreDropBuild"
Condition=" '$(SkipDropBuild)'!='true' and '$(IsDesktopBuild)'!='true' "
DependsOnTargets="$(CoreDropBuildDependsOn)">
...
</Target>
</code></pre>
<p>Within this target you can manipulate the output as you want it. The default is to just copy everything from $(BinariesRoot)\$(BuildType) to $(DropLocation)\$(BuildNumber).</p>
<p>I normally use the <a href="http://www.codeplex.com/sdctasks" rel="nofollow">Microsoft.Sdc.Tasks project</a> for file copying capabilities. </p>
http://stackoverflow.com/questions/698855/whats-the-best-way-to-get-tfs-to-output-each-project-to-its-own-directory/727233#727233-1Answer by Erik A. Brandstadmoen for What's the best way to get TFS to output each project to its own directory?Erik A. Brandstadmoen2009-04-07T19:21:15Z2009-04-07T19:21:15Z<p>Simple Solution:</p>
<p>Replace all <SolutionToBuild> nodes with <SolutionToPublish>. This will of course only work for publishable projects (e.g. Web projects and applications), not for library projects.</p>
<p>As simple as that :)</p>
http://stackoverflow.com/questions/698855/whats-the-best-way-to-get-tfs-to-output-each-project-to-its-own-directory/812261#8122612Answer by gumsy for What's the best way to get TFS to output each project to its own directory?gumsy2009-05-01T17:03:22Z2009-05-01T17:03:22Z<p>For each SolutionToBuild node, set the property OutDir to $(OutDir)\SubFolder<br>
For example:</p>
<pre><code> <ItemGroup>
<SolutionToBuild Include="Project1.sln" >
<Properties>OutDir=$(OutDir)\Project1\</Properties>
</SolutionToBuild>
<SolutionToBuild Include="Project2.sln" >
<Properties>OutDir=$(OutDir)\Project2\</Properties>
</SolutionToBuild>
<SolutionToBuild Include="Project3.sln" >
<Properties>OutDir=$(OutDir)\Project3\</Properties>
</SolutionToBuild>
<ItemGroup>
</code></pre>
<p>(This works in TF2008, but not TF2005.)</p>
http://stackoverflow.com/questions/698855/whats-the-best-way-to-get-tfs-to-output-each-project-to-its-own-directory/828263#8282630Answer by Vaccano for What's the best way to get TFS to output each project to its own directory?Vaccano2009-05-06T06:19:06Z2009-05-06T06:19:06Z<p>+1 to gumsy's answer </p>
<p>The other option is to add a target that before build depends on. Doable, but his solution is even more elegant.</p>
<p>(I wanted to post this as a comment, but I don't have the rep points)</p>
http://stackoverflow.com/questions/698855/whats-the-best-way-to-get-tfs-to-output-each-project-to-its-own-directory/983319#9833192Answer by Mike Hadlow for What's the best way to get TFS to output each project to its own directory?Mike Hadlow2009-06-11T20:04:15Z2009-06-11T20:04:15Z<p>I just blogged another method here:</p>
<p><a href="http://mikehadlow.blogspot.com/2009/06/tfs-build-publishedwebsites-for-exe-and.html" rel="nofollow">http://mikehadlow.blogspot.com/2009/06/tfs-build-publishedwebsites-for-exe-and.html</a>
but if you can't be bothered to follow the link, here it is in full:</p>
<p>It’s generally good practice to collect all the code under your team’s control in a single uber-solution as described in this Patterns and Practices PDF, Team Development with TFS Guide. If you then configure the TFS build server to build this solution, it’s default behaviour is to place the build output into a single folder, ‘Release’.</p>
<p>Any web application projects in your solution will also be output to a folder called _PublishedWebsites\. This is very nice because it means that you can simply robocopy deploy the web application.</p>
<p>Unfortunately there’s no similar default behaviour for other project types such as WinForms, console or library. It would be very nice if we could have a _PublishedApplications\ sub folder with the output of any selected project(s). Fortunately it’s not that hard to do.</p>
<p>The way _PublishedWebsites works is pretty simple. If you look at the project file of your web application you’ll notice an import near the bottom:</p>
<pre><code><Import Project="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v9.0\WebApplications\Microsoft.WebApplication.targets" />
</code></pre>
<p>On my machine the MSBuildExtensionsPath property evaluates to C:\Program Files\MSBuild, if we open the Microsoft.WebApplication.targets file we can see that it’s a pretty simple MSBuild file that recognises when the build is not a desktop build, i.e. it’s a TFS build, and copies the output to:</p>
<pre><code>$(OutDir)_PublishedWebsites\$(MSBuildProjectName)
</code></pre>
<p>I simply copied the Micrsoft.WebApplication.targets file, put it under source control with a relative path from my project files and changed _PublishedWebsites to _PublishedApplications and renamed the file CI.exe.targets. For each project that I want to output to _PublishedApplications, I simply added this import at the bottom of the project file:</p>
<pre><code><Import Project="<your relative path>\CI.exe.targets" />
</code></pre>
<p>You can edit CI.exe.targets (or whatever you want to call it) to do your bidding. In my case, the only change so far is to add a couple of lines to copy the App.config file:</p>
<pre><code><Copy SourceFiles="$(OutDir)$(TargetFileName).config" DestinationFolder="$(WebProjectOutputDir)\bin" SkipUnchangedFiles="true" />
</code></pre>
<p>There’s a lot of stuff in Microsoft.WebApplication.targets that’s only relevant to web applications and can be stripped out for other project types, but I’ll leave that as an exercise for the reader.</p>
http://stackoverflow.com/questions/698855/whats-the-best-way-to-get-tfs-to-output-each-project-to-its-own-directory/984734#9847342Answer by William D. Bartholomew for What's the best way to get TFS to output each project to its own directory?William D. Bartholomew2009-06-12T02:28:35Z2009-06-12T02:28:35Z<p>By default each project file (*.csproj, *.vbproj, etc.) specifies a default output directory (which is usually bin\Debug, bin\Release, etc.). Team Build actually overrides this so that you're not at the whim of what properties the developer sets in the project file but also so that Team Build can make assumptions about where the outputs are located.</p>
<p>The easiest way to override this behaviour is to set CustomizableOutDir to true in the SolutionToBuild item group as shown here:</p>
<pre><code><ItemGroup>
<SolutionToBuild Include="$(BuildProjectFolderPath)\path\MySolution.sln" />
<Properties>CustomizableOutDir=true</Properties>
</SolutionToBuild>
</ItemGroup>
</code></pre>
<p>This will make the drop folder structure roughly match what you would get locally if you built the solution.</p>
<p>This method is definitely preferable to overriding the Core* targets which can cause upgrade issues.</p>
http://stackoverflow.com/questions/698855/whats-the-best-way-to-get-tfs-to-output-each-project-to-its-own-directory/1177642#11776420Answer by Jeff for What's the best way to get TFS to output each project to its own directory?Jeff2009-07-24T13:25:34Z2009-07-24T13:25:34Z<p>If you're running 2008 check out
<a href="http://blogs.msdn.com/aaronhallberg/archive/2007/06/07/preserving-output-directory-structures-in-orcas-team-build.aspx" rel="nofollow">this link</a></p>