Anzurio
Anzurio

Reputation: 17014

Things to keep in mind when migrating from VS2008 to VS2010

So, I'll be soon working on porting two APIs (C++ and C++/CLI) to use the VS2010 compiler. I think it'd be a good idea to have a head start on this. Any tips?

Upvotes: 8

Views: 1869

Answers (3)

Pete
Pete

Reputation: 12553

Just a little thing worth noting. In VS2010, you have the option of specifying the target framework.

Upvotes: 0

Alan
Alan

Reputation: 13721

Breaking changes to C++/STL projects are outlined here.

vs2010 will also use a different build mechanism in the for of MSBuild.

Unfortunately, the revamped Intellisense in vs2010 won't extend to C++/CLI which some people aren't too happy about, however native code developer can look forward to a more responsive environment (hopefully).

Upvotes: 9

John Saunders
John Saunders

Reputation: 161773

Tip #1: it's a beta! Don't expect RTM performance, stability, or anything else.
Tip #2: Report bugs! If you want it to ever stop acting like a beta, then you have to tell Microsoft about it on Connect (http://connect.microsoft.com/visualstudio/).

Upvotes: 6

Related Questions