views:

170

answers:

0

Here is the situation - I developed my application in VC++ 2008, using Windows Forms/Managed Code. It runs fine.

However, I need it to run on a Windows 2000 machine, and, if possible, not need any additional DLLs/installs aside from the 2.0 framework.

I looked around, and most of the answers I got were about not needing MSVCR90.dll on unmanaged app - but, of course, the common method doesn't seem to work with managed apps (basically, switching to no /clr and use /MT option - that gives me a C1190 error).

So, is there any way to do it without any additional files except for the executable?