Reputation: 383
The solution is building successfully in local machine but while adding it to the build step is failing. I am running the build in VS 2015 Below is the error that I am getting:
Any help would be appreciated.
Upvotes: 0
Views: 55
Reputation: 38136
It seems this is caused by the setting in your vs build task in VSTS build definition.
You project seems use the x64 processor architecture but you set x86 processor architecture in build definition. So please change MSBuild Architecture to MSBuild x64
and queue the build again.
Upvotes: 1