1. On VS2010, VC project builds with MSBuild (vcxproj) to get a consistent building system for all languages.
2. No matter which platformtoolset is selected (v100 or v90), MSBuild is used for building vc project.
3. Multi-targeting
--C++ Native Multi-Targeting: change PlatformToolSet between v100 and v90.
--C++ Managed Multi-Targeting: Add / configure TargetFrameworkVersion manually in vcxproj file.
--C# Multi-targeting: change "Target Framework" directly in project property.

Refer to:
C++ Native Multi-Targeting
C++ Managed Multi-Targeting
C# Multi-targeting

相关文章:

  • 2021-08-19
  • 2021-06-01
  • 2021-12-21
  • 2021-07-17
  • 2021-11-24
  • 2022-12-23
  • 2022-01-06
  • 2022-12-23
猜你喜欢
  • 2022-01-26
  • 2021-10-19
  • 2021-05-18
  • 2021-06-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案