visual c++ - Do I have .NET dependencies? -
the following headers i'm including when pick , create empty project , add c++ file:
stdio.h windows.h tlhelp32.h
the program stable when there .net 4.0 installation on system. don't know use .net in program. there resource file, doesn't use .net related stuff.
also, can't migrate framework 3.5 without building new project (it's 4.0 now), , seems switch 4.0 after compiling, though checked 2.0.
one win32 c++ empty project (/clr
) , 1 empty project c windows api.
if you're compiling /clr, believe have .net dependency - switch affects type of binary produced compiler. regardless of whether use .net types or features, if compile /clr you'll .net assembly.
Comments
Post a Comment