Does anyone have a method to overcome the 260 character limit of the MSBuild tool for building Visual Studio projects and solutions from the command line? I'm trying to get the build automated using CruiseControl (CruiseControl.NET isn't an option, so I'm trying to tie it into normal ant scripts) and I keep on running into problems with the length of the paths. To clarify, the problem is in the length of paths of projects referenced in the solution file, as the tool doesn't collapse paths down properly :(

I've also tried using DevEnv which sometimes works and sometimes throws an exception, which isn't good for an automated build on a separate machine. So please don't suggest using this as a replacement.

And to top it all, the project builds fine when using Visual Studio through the normal IDE.

link|improve this question

I notice that when vs2008 does a build it seems to run a different set of msbuild targets than simple msbuild executed under cc.net - perhaps the answer is in one of those targets – Richard Sep 26 '08 at 15:03
feedback

7 Answers

up vote 1 down vote accepted

It seems that it is limitation of the MSBuild. We had the same problem, and in the end, we had to get paths shortened, because did not find any other solution that worked properly.

link|improve this answer
After several days of effort, this seems to be what I'm going to have to request. Thankfully a new (much shorter) path structure is being proposed for these projects, so the problem should go away then :) – workmad3 Sep 30 '08 at 11:24
System.IO of the .Net framework (v1.0-v3.5) has this limitation and MSBuild is using .Net. (Currently the only way around this is using PInvoke about everywhere a path is used.) – Bert Huijben Dec 19 '08 at 0:01
feedback

The SUBST command stills seems to exist so remapping the root of your build folder to a drive letter may save some characters if Judah Himango's solution is no good.

link|improve this answer
They are already being SUBST'd to the most common root of the directory structure :( It would work if the path names weren't so infernally long though. – workmad3 Sep 30 '08 at 11:24
We're using subst to build the Silverlight Toolkit, it isn't perfect, but this hack is a good first step. +1 Jason – Jeff Wilcox Sep 14 '09 at 5:49
feedback

There are two kinds of long path problems relevant to build. One is paths that aren't really too long, but have lots of "..\" in them. Typically, these are references' HintPath values. MSBuild should normalize these paths down to below the max limit, so that they work.

The other kind of path is just plain too long. Sorry, but these just won't work. After looking at it a fair bit, the problem is that there just isn't sufficient API support for long paths. The BCL team (see their blog) had similar problems. Only some of the Win32 API's support the \?\ format. Arbitrary build tools, and probably 98% of apps out there, don't; and worse would probably behave badly (think of all the buffers sized for MAX_PATH).

We came to the conclusion that until there's a big ecosystem effort to make long paths work, or Windows comes up with some ingenious way to make them work anyway (like the short paths mangling?) long paths just aren't possible for MSBuild to support. Workarounds include subst, as you found; but if your tree just is simply too deep, your only options are to build it in fragments, or to shorten the folder names. Sorry.

Dan/MSBuild

link|improve this answer
Could you elaborate on the "..\" being a problem, we have relative file paths that are not very long. And even if converted to absolute paths are less than 200 characters, but they still fail in the csc.exe call. – harrydev Oct 7 '11 at 11:37
feedback

Have you tried DOS paths? Or the \\?\ prefix? The .NET BCL team blog has more info.

link|improve this answer
feedback

I had recently changed my password when this occurred. I logged out and logged back in and it worked great.

link|improve this answer
feedback

I found the problem to be that when the C# compiler (csc.exe) is called it uses the projects directory path PROJECTDIRECTORY together with the output path OUTPUTPATH by simply appending them as:

PROJECTDIRECTORY+OUTPUTPATH

However, if the OUTPUTPATH is relative i.e. "..\..\Build\ProjectName\AnyCPU_Debug_Bin\" and the project directory is pretty long then the total length is longer than 259 characters since the path will be:

PROJECTPATH+"..\..\Build\ProjectName\AnyCPU_Debug_Bin\"

instead of an absolute path.

If csc.exe would make an absolute path before calling Win32 functions this would work. Since in our case the absolute path length is less than 160 characters.

For some reason the call to csc.exe from visual studio is then different from MSBuild than it is from visual studio. Do not know why.

In any case, the problem can be resolved by changing either or both PROJECTDIRECTORY and/or OUTPUTPATH paths.

link|improve this answer
feedback

I solved similar issue by adjusting CSPROJ-file:

<BaseIntermediateOutputPath>$([System.IO.Path]::GetFullPath('$(MSBuildProjectDirectory)......\Intermediate\$(AssemblyName)_$(ProjectGuid)\'))</BaseIntermediateOutputPath>

As the result during compilation CSC.EXE receives full path instead of relative one.

Thanks to harrydev for clue on how CSC.EXE operates with the paths.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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