I am building a solution with MSBuild on different workstations. For instance on a workstation on which Visual Studio 2017 is installed with a Platform version 10.017763.0, I do:
msbuild solution.sln /p:Configuration=Release /p:Platform=x64 /p:TargetPlatformVersion=10.0.17763.0
On other nodes, this target is not available. So How can I tell MSBUILD to use the most recent target platform version if several are available?
In advance, thanks for your constructive inputs.