Can't upgrade Visual studio solution to 2013

Seyren Windsor

I don't know what is wrong with the project, i have Visual Studio 2013 on a new computer and i never had 2012, this is a clean computer.

I made a project with the 3DS Max 2015 SDK That makes a clean project, but turns out it's made for 2012 for some reason (despite i made it with 2013).

So i changed the toolset in the project settings and i even tried to "upgrade solution", but it's still stuck on 2012 on the visual studio window.

And well obviously this pops up every time i try to compile.

Error 1 error MSB8020: The build tools for Visual Studio 2012 (Platform Toolset = 'v110') cannot be found. To build using the v110 build tools, please install Visual Studio 2012 build tools. Alternatively, you may upgrade to the current Visual Studio tools by selecting the Project menu or right-click the solution, and then selecting "Upgrade Solution...".

The thing is that if you open for example the project with Notepad, you check the tools of the project and it's 2013.

<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Hybrid|x64'">
    <PlatformToolset>v120</PlatformToolset>
</PropertyGroup>
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
    <PlatformToolset>v120</PlatformToolset>
</PropertyGroup>
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
    <PlatformToolset>v120</PlatformToolset>

It doesn't make any sense and it's still there not letting me to compile, any suggestions of why is this going on? i don't understand at all why is this happening and hopefully i won't have to install 2012 version.

IAmNoone

The SDK propertySheets overrides this setting, so no matter what you do in your project the template will still override it.

To change this - edit the version number in the file:

\maxsdk\ProjectSettings\propertySheets\3dsmax.general.project.settings.props

Edit this line:

<PlatformToolset>v110</PlatformToolset>

To your platform number, then it works.

I did the same in one of my own projects where I needed visual studio 2013, and ran into the same issue as you describe.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

Upgrade Visual Studio 2013 solutions to Visual Studio 2015

From Dev

Create Solution Folder in Visual Studio Express 2013

From Dev

Can't build new MVC solution on visual studio 2013

From Dev

Creating a Sharepoint 2010 Solution in Visual Studio 2013

From Dev

Run Visual Studio 2013 solution with Crystal Reports

From Dev

Visual Studio 2013 can't debug javascript in cshtml

From Dev

Upgrade to Visual Studio 2013 from 2010

From Dev

Can't change a project's Default Namespace in Visual Studio 2013

From Dev

Can't integrate Visual Studio 2013 with an add-in

From Dev

Visual Studio 2013 Can't save, build, or rebuild solution

From Dev

Visual Studio 2013 can't run c# files

From Dev

Can't install Visual Studio Community Edition 2013

From Dev

Can't debug test using breakpoint in Visual Studio 2013

From Dev

Images not referenced by solution explorer in Visual Studio 2013

From Dev

How to upgrade a 2013 vspackage to visual Studio 2015

From Dev

Visual Studio 2013 Installer Project can't save .vdproj file

From Dev

Can't install VSIX extension file in Visual Studio Express 2013?

From Dev

Can't uninstall Visual Studio 2013 RC

From Dev

I can't add new item on Visual Studio 2013 RC

From Dev

Can't uninstall Visual Studio Express 2013 for Web

From Dev

Can't change a project's Default Namespace in Visual Studio 2013

From Dev

Why can't I call CTime::GetAsDBTIMESTAMP with Visual Studio 2013?

From Dev

Can't delete registry key Visual Studio Express 2013

From Dev

Can't analyzeload test results in visual studio 2013

From Dev

Can't run a C++ program on Visual Studio 2013

From Dev

Can't validate anything in my layer diagram in Visual Studio 2013

From Dev

Visual Studio 2013 can't find present DLLs

From Dev

Can't add new sharepoint 2013 connections in Visual Studio 2015

From Dev

Caps Locks can't be remapping via AutoHotKey in Visual Studio 2013

Related Related

  1. 1

    Upgrade Visual Studio 2013 solutions to Visual Studio 2015

  2. 2

    Create Solution Folder in Visual Studio Express 2013

  3. 3

    Can't build new MVC solution on visual studio 2013

  4. 4

    Creating a Sharepoint 2010 Solution in Visual Studio 2013

  5. 5

    Run Visual Studio 2013 solution with Crystal Reports

  6. 6

    Visual Studio 2013 can't debug javascript in cshtml

  7. 7

    Upgrade to Visual Studio 2013 from 2010

  8. 8

    Can't change a project's Default Namespace in Visual Studio 2013

  9. 9

    Can't integrate Visual Studio 2013 with an add-in

  10. 10

    Visual Studio 2013 Can't save, build, or rebuild solution

  11. 11

    Visual Studio 2013 can't run c# files

  12. 12

    Can't install Visual Studio Community Edition 2013

  13. 13

    Can't debug test using breakpoint in Visual Studio 2013

  14. 14

    Images not referenced by solution explorer in Visual Studio 2013

  15. 15

    How to upgrade a 2013 vspackage to visual Studio 2015

  16. 16

    Visual Studio 2013 Installer Project can't save .vdproj file

  17. 17

    Can't install VSIX extension file in Visual Studio Express 2013?

  18. 18

    Can't uninstall Visual Studio 2013 RC

  19. 19

    I can't add new item on Visual Studio 2013 RC

  20. 20

    Can't uninstall Visual Studio Express 2013 for Web

  21. 21

    Can't change a project's Default Namespace in Visual Studio 2013

  22. 22

    Why can't I call CTime::GetAsDBTIMESTAMP with Visual Studio 2013?

  23. 23

    Can't delete registry key Visual Studio Express 2013

  24. 24

    Can't analyzeload test results in visual studio 2013

  25. 25

    Can't run a C++ program on Visual Studio 2013

  26. 26

    Can't validate anything in my layer diagram in Visual Studio 2013

  27. 27

    Visual Studio 2013 can't find present DLLs

  28. 28

    Can't add new sharepoint 2013 connections in Visual Studio 2015

  29. 29

    Caps Locks can't be remapping via AutoHotKey in Visual Studio 2013

HotTag

Archive