i am trying to build the google dart project on windows XP.
following the installation documentation, i ran accross a problem. The python script needs to call devenv
Have you ever tried MSBuild? MSDN now recommands using MSBuild instead of devenv. MSBuild seems to come along with VC Express at no cost.
To build a solution with configuration Debug|Win32 using MSBuild:
msbuild xxx.sln /p:Configuration=Debug /p:Platform=Win32
More detailed MSBuild usage is available on MSDN.