visual c++ - Problem with newly built VC++ application? -
My application that was built on VC ++ 2008, when there is an error running on a freshly installed XP dot net. Fx asks to install. And I also faced a similar problem when I tried to run it on another XP system after installing it, it started running.
Is there any way i can create applications independent of all these extra installations?
Do not you compile the managed C ++ (CLR targeting) instead of the real C ++ ? In the past, dotnetfx's .NET runtime is not exactly optional and there are some optional editions. In the latter case, you only need VC_redist in the x86 or 64bit version. It installs only C and C ++ DLLs These are side-by-side assembles and should match the compiled version for you.
Comments
Post a Comment