Error using the Build VS NET Solution action

Hello,

I am having a problem trying to compile a .NET project using the Build VS NET Solution action. Reading the error message it seems that the compile action is not creating a properly formed string of args when it calls devenv (looks like they are out of order). It seems pretty unlikely to me that this bug would have gone undiscovered thus far. Any ideas what I may be going wrong? I get the following error:

Running D:\Program Files\Microsoft Visual Studio .NET\Common7\IDE\devenv.com with parameters : /build "" "\\serverName$\inetpub\wwwroot\directory\foo.sln"
------

Microsoft (R) Development Environment Version 7.00.9466.
Copyright (C) Microsoft Corp 1984-2001. All rights reserved.

Invalid solution configuration

Usage:
devenv [solutionfile | projectfile | anyfile.ext] [switches]
...

Thanks!

My problem, I was not including a value in the Configuration field. Once I added 'Release' it worked like a champ.

Odd though that the compiler error message dumps out the arguments in an order other than what was passed in. Had me looking in the wrong place for quite some time.

Thanks