[RESOLVED] C++ and .net framework
If I use VS 2005 and C++ to develop an executable will it require the .Net framework? The reason that I ask is that I devloped a VB.Net application and a coworker didn't want to have to ensure that every PC that we install this app has the proper version of the .Net framework. He wants to rewrite the application in C++ so that the executable will not require the framework. Is he correct?
Re: C++ and .net framework
He is. VC++ compiles both managed and unmanaged code. When you start a new project, make sure to select either the Empty template (recommended) or Win32. Don't pick anything to do with CLI.
Re: C++ and .net framework
Thanks...
I guess that it's time to go eat some crow.