Visual Studio 2013 error MS8020 Build tools v140 cannot be found

前端 未结 2 1581
野趣味
野趣味 2020-12-05 04:03

I had previously been using VS2013 express without issue, but suddenly it began crashing whenever I tried edit the code while it ran existing code fine.

I tried unin

相关标签:
2条回答
  • 2020-12-05 04:25

    @bku_drytt's solution didn't do it for me.

    I solved it by additionally changing every occurence of 14.0 to 12.0 and v140 to v120 manually in the .vcxproj files.

    Then it compiled!

    0 讨论(0)
  • 2020-12-05 04:36

    That's the platform toolset for VS2015. You uninstalled it, therefore it is no longer available.

    To change your Platform Toolset:

    1. Right click your project, go to Properties.
    2. Under Configuration Properties, go to General.
    3. Change your Platform Toolset to one of the available ones.
    0 讨论(0)
提交回复
热议问题