Adam Pierce
Adam Pierce

Reputation: 34375

Can I compile legacy MFC applications with Visual Studio 2008?

I maintain several old MFC applications using Visual Studio 7 and I was considering upgrading to Visual Studio 2008. After reading this question, I realise that the Express edition will not be able to do this.

Does anyone know if I will be able to compile old MFC apps with VS2008 Standard edition or will I need to get the more expensive Professional edition ?

Upvotes: 2

Views: 946

Answers (2)

Aidan Ryan
Aidan Ryan

Reputation: 11607

You'll have everything you need to build an MFC application with Standard edition. Be warned, though, if it is an application of any size or complexity it will not simply be a matter of upgrading the project/solution files and hitting F5. There are plenty of breaking changes between VS7 and 2008, most introduced in the V8 compiler. Roll up your sleeves.

Upvotes: 2

Gerald
Gerald

Reputation: 23499

Yes, the Standard edition includes support for MFC/ATL.

FYI you can compare the features

Upvotes: 2

Related Questions