upgrading vc6 c++ project to .net
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
if i upgrade my c++ projects from vc6 to visual studio.net, do i need to install .net framework on all the computers that will run my compiled executables? thanks
-
if i upgrade my c++ projects from vc6 to visual studio.net, do i need to install .net framework on all the computers that will run my compiled executables? thanks
Only if you turn on the /CLR compiler switch which generates managed rather than unmanaged code. Visual Studio .NET can still generate native windows executables (only using C++) that do not use the .NET framework. Dave http://www.cloudsofheaven.org