विंडोज़ पर दृश्य स्टूडियो 2012 का उपयोग करते हुए 8 x64 निस्संदेह यह msbuild द्वारा स्थानांतरित किए जाने के कारण होता है। लेकिन मैंने यह नहीं देखा कि इसे कैसे ठीक किया जाए।
4>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.Cpp.Platform.targets(44,5): error MSB8020: The builds tools for v120 (Platform Toolset = 'v120') cannot be found. To build using the v120 build tools, either click the Project menu or right-click the solution, and then select "Update VC++ Projects...". Install v120 to build using the v120 build tools.
2>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.Cpp.Platform.targets(44,5):
error MSB8020: The builds tools for v120 (Platform Toolset = 'v120') cannot be found. To build using the v120 build tools, either click the Project menu or right-click the solution, and then select "Update VC++ Projects...". Install v120 to build using the v120 build tools.
5>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.Cpp.Platform.targets(44,5): error MSB8020: The builds tools for v120 (Platform Toolset = 'v120') cannot be found. To build using the v120 build tools, either click the Project menu or right-click the solution, and then select "Update VC++ Projects...". Install v120 to build using the v120 build tools.
PlatformToolset
, आप इसे (VS2013) की तरह ओवरराइड कर सकते हैं:"\Program Files (x86)\MSBuild\12.0\Bin\MSBuild" .\path\to\MySolution.sln /p:PlatformToolset=v120
(यदि आप पॉवरशेल में हैं, तो&
पहले डाल दें\Progr..
)। VS2015 के लिए, यह हो जाएगा"\Program Files (x86)\MSBuild\14.0\Bin\MSBuild"
और/p:PlatformToolset=v140
और इतने पर।