I'm creating some build definitions in TFS2010 without problem until now.

MSBUILD Command:


C:\Windows\Microsoft.NET\Framework64\v4.0.30319\MSBuild.exe /nologo /noconsolelogger "C:\Builds\Neptune\Sources\\Branches\v5.0-Ehub\EHub-5.0.sln" /m:1 /fl /flp:"logfile=C:\Builds\Neptune\Sources\\Branches\v5.0-Ehub\EHub-5.0.log;encoding=Unicode;verbosity=detailed" /p:SkipInvalidConfigurations=true /p:OutDir="C:\Builds\Neptune\Binaries\\" /p:Configuration="Site" /p:Platform="Mixed Platforms" /p:RunCodeAnalysis="False" /p:VCBuildOverride="C:\Builds\Neptune\Sources\\Branches\v5.0-Ehub\EHub-5.0.sln.Mixed Platforms.Site.vsprops" /dl:WorkflowCentralLogger,"C:\Program Files\Microsoft Team Foundation Server 2010\Tools\Microsoft.TeamFoundation.Build.Server.Logger.dll";"Verbosity=Detailed;BuildUri=vstfs:///Build/Build/1222;InformationNodeId=2168680;TargetsNotLogged=GetNativeManifest,GetCopyToOutputDirectoryItems,GetTargetPath;TFSUrl=http://ldu01:8080/tfs/Nova.com;"*WorkflowForwardingLogger,"C:\Program Files\Microsoft Team Foundation Server 2010\Tools\Microsoft.TeamFoundation.Build.Server.Logger.dll";"Verbosity=Detailed;"

I'm getting this error:


(Site target) -> MSBUILD : error MSB3095: Invalid argument. Illegal characters in path. [C:\Builds\Neptune\Sources\Branches\v5.0-EHub\EHub-5.0.sln]

Yet I don't see anything illegal in the path, it's just a plain path and it works. What is going on?


EDIT: Removed the double slashes, removed the extra dot, removed the minus sign, nothing worked.

EDIT: Let me be more specific. It builds part of the solution, but as soon as it gets to a point, it gives me this error and returns.

EDIT: Yet more details. the specific lines where it seems to fail:

Using "CombinePath" task from assembly "Microsoft.Build.Tasks.v3.5, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a".
Task "CombinePath"
MSBUILD : error MSB3095: Invalid argument. Illegal characters in path. [C:\Builds\Pluto\Sources\Branches\v5.0-Ehub\EHub-5.0.sln]
Done executing task "CombinePath" -- FAILED.
Done building target "Site" in project "EHub-5.0.sln" -- FAILED.
Done executing task "CallTarget" -- FAILED.
Done building target "Build" in project "EHub-5.0.sln" -- FAILED.
Done Building Project "C:\Builds\Pluto\Sources\Branches\v5.0-Ehub\EHub-5.0.sln" (default targets) -- FAILED.
link|improve this question

1  
Apart from the double slashes in your command, I don't see anything unusual. But then, special characters may not display well in a HTML element, so I'd say take your path and run it against Path.GetInvalidPathChars() to see what is causing the problem. – Mrchief Aug 24 '11 at 14:30
feedback

3 Answers

up vote 1 down vote accepted

Surprisingly (or not), it seems the problem had absolutely nothing to do with an Illegal Character, nor with the [C:\Builds\Neptune\Sources\Branches\v5.0-EHub\EHub-5.0.sln] string.

One of the projects in the solution had an invalid reference. Other one had an invalid dll.refresh path.

One of these two things caused the problem, but I'm out of time so I won't test which one did.

I fixed the references and the problem went away.


I'm still curious why I got the error error MSB3095: Invalid argument. Illegal characters in path., though.

link|improve this answer
Google thinks it was the .refresh – Si. Aug 24 '11 at 22:41
feedback

The double slashes seem odd and problematic...

link|improve this answer
Hello. As odd as they may seem, after removing the double slashes the problem persisted, with the exactly same message. – Conrad Clark Aug 24 '11 at 14:32
feedback

How about minus characters ('-') ? I'm not sure that the minus symbol is valid here.

link|improve this answer
I'm pretty sure a minus is a valid char for a path, but tested it anyway to see if it was some MSBUILD peculiarity and it still doesn't work. – Conrad Clark Aug 24 '11 at 14:50
feedback

Your Answer

 
or
required, but never shown

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