MSBuild task configuration property

前端 未结 4 1850
心在旅途
心在旅途 2020-12-09 16:55

I have three Visual Studio solutions. The first is configured to build as Release, and the other two are set to build as Debug.

When running a simp

4条回答
  •  醉话见心
    2020-12-09 17:27

    I was getting this same error. The solution was to explicitly specify the target platform with:

    msbuild.exe /p:Platform="Any CPU"
    

    This only started happening since I upgraded to windows 7, so I guess it is something to do with that.

提交回复
热议问题