vote up 11 vote down star
6

I have a large c# solution file (~100 projects), and I am trying to improve build times. I think that "Copy Local" is wasteful in many cases for us, but I am wondering about best practices.

In our .sln, we have application A depending on assembly B which depends on assembly C. In our case, there are dozens of "B" and a handful of "C". Since these are all included in the .sln, we're using project references. All assemblies currently build into $(SolutionDir)/Debug (or Release).

By default, Visual Studio marks these project references as "Copy Local", which results in every "C" being copied into $(SolutionDir)/Debug once for every "B" that builds. This seems wasteful. What can go wrong if I just turn "Copy Local" off? What do other people with large systems do?

FOLLOWUP:

Lots of responses suggest breaking up the build into smaller .sln files... In the example above, I would build the foundation classes "C" first, followed by the bulk of the modules "B", and then a few applications, "A". In this model, I need to have non-project references to C from B. The problem I run into there is that "Debug" or "Release" gets baked into the hint path and I wind up building my Release builds of "B" against debug builds of "C".

For those of you that split the build up into multiple .sln files, how do you manage this problem?

flag

40% accept rate
Good question. We have the same issue. The solution was set up by external "experts" which boldly stated that this is the way to do it. I have lots of doubts, but not enough knowledge to argue against them. – gyrolf Nov 11 '08 at 12:35
You can make your Hint Path reference the Debug or Release directory by editing the project file directly. Use $(Configuration) in place of Debug or Release. E.g., <HintPath>..\output\$(Configuration)\test.dll</HintPath> This is a pain when you have a lot of references (although it shouldn't be hard for someone to write an add-in to manage this). – chaiwalla Sep 1 at 17:38

10 Answers

vote up 7 vote down

In a previous project I worked with one big solution with project references and bumped into a performance problem as well. The solution was three fold:

  1. Always set the Copy Local property to false and inforce this via a custom msbuild step
  2. Set the output directory for each project to the same directory (preferably relative to $(SolutionDir)
  3. The default cs targets that get shipped with the framework calculate the set of references to be copied to the output dirctory of the project currently being built. Since this requires calculating a transitive closure under the 'References' relation this can become VERY costly. My workaround for this was to redefine the GetCopyToOutputDirectoryItems target in a common targets file that's imported in every project after the import of the Microsoft.CSharp.targets. This reduced our build time at a given time from a couple of hours (mostly due to memory constraints), to a couple of minutes. The redefined GetCopyToOutputDirectoryItems is pasted below

    Get all project items that may need to be transferred to the output directory.
    ============================================================
    -->
    <Target
        Name="GetCopyToOutputDirectoryItems"
        Outputs="@(AllItemsFullPathWithTargetPath)"
        DependsOnTargets="AssignTargetPaths;_SplitProjectReferencesByFileExistence">
    
    
    
    &lt;!-- Get items from this project last so that they will be copied last. --&gt;
    &lt;CreateItem
        Include="@(ContentWithTargetPath-&gt;'%(FullPath)')"
        Condition="'%(ContentWithTargetPath.CopyToOutputDirectory)'=='Always' or '%(ContentWithTargetPath.CopyToOutputDirectory)'=='PreserveNewest'"
            &gt;
        &lt;Output TaskParameter="Include" ItemName="AllItemsFullPathWithTargetPath"/&gt;
        &lt;Output TaskParameter="Include" ItemName="_SourceItemsToCopyToOutputDirectoryAlways"
                Condition="'%(ContentWithTargetPath.CopyToOutputDirectory)'=='Always'"/&gt;
        &lt;Output TaskParameter="Include" ItemName="_SourceItemsToCopyToOutputDirectory"
                Condition="'%(ContentWithTargetPath.CopyToOutputDirectory)'=='PreserveNewest'"/&gt;
    &lt;/CreateItem&gt;
    
    
    &lt;CreateItem
        Include="@(_EmbeddedResourceWithTargetPath-&gt;'%(FullPath)')"
        Condition="'%(_EmbeddedResourceWithTargetPath.CopyToOutputDirectory)'=='Always' or '%(_EmbeddedResourceWithTargetPath.CopyToOutputDirectory)'=='PreserveNewest'"
            &gt;
        &lt;Output TaskParameter="Include" ItemName="AllItemsFullPathWithTargetPath"/&gt;
        &lt;Output TaskParameter="Include" ItemName="_SourceItemsToCopyToOutputDirectoryAlways"
                Condition="'%(_EmbeddedResourceWithTargetPath.CopyToOutputDirectory)'=='Always'"/&gt;
        &lt;Output TaskParameter="Include" ItemName="_SourceItemsToCopyToOutputDirectory"
                Condition="'%(_EmbeddedResourceWithTargetPath.CopyToOutputDirectory)'=='PreserveNewest'"/&gt;
    &lt;/CreateItem&gt;
    
    
    &lt;CreateItem
        Include="@(Compile-&gt;'%(FullPath)')"
        Condition="'%(Compile.CopyToOutputDirectory)'=='Always' or '%(Compile.CopyToOutputDirectory)'=='PreserveNewest'"&gt;
        &lt;Output TaskParameter="Include" ItemName="_CompileItemsToCopy"/&gt;
    &lt;/CreateItem&gt;
    &lt;AssignTargetPath Files="@(_CompileItemsToCopy)" RootFolder="$(MSBuildProjectDirectory)"&gt;
        &lt;Output TaskParameter="AssignedFiles" ItemName="_CompileItemsToCopyWithTargetPath" /&gt;
    &lt;/AssignTargetPath&gt;
    &lt;CreateItem Include="@(_CompileItemsToCopyWithTargetPath)"&gt;
        &lt;Output TaskParameter="Include" ItemName="AllItemsFullPathWithTargetPath"/&gt;
        &lt;Output TaskParameter="Include" ItemName="_SourceItemsToCopyToOutputDirectoryAlways"
                Condition="'%(_CompileItemsToCopyWithTargetPath.CopyToOutputDirectory)'=='Always'"/&gt;
        &lt;Output TaskParameter="Include" ItemName="_SourceItemsToCopyToOutputDirectory"
                Condition="'%(_CompileItemsToCopyWithTargetPath.CopyToOutputDirectory)'=='PreserveNewest'"/&gt;
    &lt;/CreateItem&gt;
    
    
    &lt;CreateItem
        Include="@(_NoneWithTargetPath-&gt;'%(FullPath)')"
        Condition="'%(_NoneWithTargetPath.CopyToOutputDirectory)'=='Always' or '%(_NoneWithTargetPath.CopyToOutputDirectory)'=='PreserveNewest'"
            &gt;
        &lt;Output TaskParameter="Include" ItemName="AllItemsFullPathWithTargetPath"/&gt;
        &lt;Output TaskParameter="Include" ItemName="_SourceItemsToCopyToOutputDirectoryAlways"
                Condition="'%(_NoneWithTargetPath.CopyToOutputDirectory)'=='Always'"/&gt;
        &lt;Output TaskParameter="Include" ItemName="_SourceItemsToCopyToOutputDirectory"
                Condition="'%(_NoneWithTargetPath.CopyToOutputDirectory)'=='PreserveNewest'"/&gt;
    &lt;/CreateItem&gt;
    
    </Target>

With this workaround in place I found it workable to have as much as > 120 projects in one solution, this has the main benifit that the build order of the projects can still be determined by VS instead of doing that be hand by splitting up your sln.

link|flag
vote up 2 vote down

our "best practise" is avoid solutions with many projects. We have a directory named "matrix" with current version of assemblies, and all references are from this directory. If you change some project and you can say "now is the change complete" you copy the assembly into the "matrix" directory. So all project, which depends on this assembly has current(=latest) version.

If you have few projects in solution, the build process is much faster.

The step "copy assembly to matrix directory" you can automatize with visual studio macros or with "menu -> tools -> external tools...".

link|flag
vote up 2 vote down

If you got the dependency structure defined via project references or via solution level dependencies it's safe to turn of "Copy Local" I would even say that it's a best practice todo so since that will let you use MSBuild 3.5 to run your build in parallel (via /maxcpucount) without diffrent processes tripping over each other when trying to copy referenced assemblies.

link|flag
vote up 2 vote down

I'll suggest you to read Patric Smacchia article on that subject :

CC.Net VS projects rely on the copy local reference assembly option set to true. [...] Not only this increase significantly the compilation time (x3 in the case of NUnit), but also it messes up your working environment. Last but not least, doing so introduces the risk for versioning potential problems. Btw, NDepend will emit a warning if it founds 2 assemblies in 2 different directories with the same name, but not the same content or version.

The right thing to do is to define 2 directories $RootDir$\bin\Debug and $RootDir$\bin\Release, and configure your VisualStudio projects to emit assemblies in these directories. All project references should reference assemblies in the Debug directory.

You could also read this article to help you reduce your projects number and improve your compilation time.

link|flag
vote up 1 vote down

I tend to build to a common directory (e.g. ..\bin), so I can create small test solutions.

link|flag
vote up 1 vote down

In my opinion, having a solution with 100 projects is a BIG mistake. You could probably split your solution in valid logical small units, thus simplifying both maintenance and builds.

link|flag
Why this post got negative point? – TcKs Nov 11 '08 at 12:58
Bruno, please see my followup question above - if we break into smaller .sln files, how do you manage the Debug vs. Release aspect that is then baked into the hint path of my references? – Dave Moore Nov 12 '08 at 11:20
vote up 1 vote down

You can try to use a folder where all assemblies that are shared between projects will be copied, then make an DEVPATH environment variable and set

<developmentMode developerInstallation="true" />

in machine.config file on each developer's workstation. The only thing you need to do is to copy any new version in your folder where DEVPATH variable points.

Also divide your solution into few smaller solutions if possible.

link|flag
Interesting... How would this work with debug vs. release builds ? – Dave Moore Nov 11 '08 at 18:42
I'm not sure whether any suitable solution exists for loading debug/release assemblies through a DEVPATH, it's intended to be used for shared assemblies only, I wouldn't recommend it for making regular builds. Also be aware that assembly version and GAC are overridden when using this technique. – Aleksandar Nov 12 '08 at 13:39
vote up 1 vote down

This may not be best pratice, but this is how I work.

I noticed that Managed C++ dumps all of its binaries into $(SolutionDir)/'DebugOrRelease'. So I dumped all my C# projects there too. I also turned off the "Copy Local" of all references to projects in the solution. I had noticable build time improvement in my small 10 project solution. This solution is a mixture of C#, managed C++, native C++, C# webservice, and installer projects.

Maybe something is broken, but since this is the only way I work, I do not notice it.

It would be interesting to find out what I am breaking.

link|flag
vote up 0 vote down

Usually, you only need to Copy Local if you want your project using the DLL that is in your Bin vs. what is somewhere else (the GAC, other projects, etc.)

I would tend to agree with the other folks that you should also try, if at all possible, to break up that solution.

You can also use Configuration Manager to make yourself different build configurations within that one solution that will only build given sets of projects.

It would seem odd if all 100 projects relied on one another, so you should be able to either break it up or use Configuration Manager to help yourself out.

link|flag
vote up 0 vote down

You can have your projects references pointing to the debug versions of the dlls. Than on your msbuild script, you can set the /p:Configuration=Release, thus you will have a release version of your application and all satellite assemblies.

link|flag
Bruno - yes, this works with Project References, which is one of the reasons we wound up with a 100 project solution in the first place. It does not work on references where I browse to the pre-built Debug releases - I wind up with a Release app built against Debug assemblies, which is a problem – Dave Moore Nov 13 '08 at 13:32
1  
Edit your project file in a text editor and use $(Configuration) in your HintPath, e.g. <HintPath>..\output\$(Configuration)\test.dll</HintPath>. – chaiwalla Sep 1 at 17:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.