No devenv file in Microsoft visual Express 10

前端 未结 4 788
执念已碎
执念已碎 2020-12-16 03:51

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

4条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-16 04:09

    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.

提交回复
热议问题