. The .NET platform had to be created for the project before you received it for transparency reasons, check the project settings and, if it builds any processor, then correct the project configuration. (Standards - AnyCPU, x86, x64, win32) etc.
I would suggest that you right-click the ".sln" file, and in the configuration manager, set the properties of what you would like to build when you invoke the platform. I.e
This sample is best served using a configuration called Mixed Platforms
csproj1 platform=AnyCPU configuration=debug build checkbox (checked) csproj2 platform=.net configuration=debug build checkbox (checked)
This will allow you to create using msbuild. The call will be
msbuild my.sln /p:configuration="Debug" /p:platform="Mixed Platforms"
Both projects will be built.
Severedlimb
source share