|
What version of Visual Studio are you using?
The file you are talking about is a manifest to the .net CLR libraries. If you are using (or including) anything that is part of the CLR library, then the manifest will be created. You can remove the CLR library options from your project, but anything .net related and probably (dunno for sure) GUI related will no longer be supported.
If you want to remove CLR (and required manifest), go into the properties of the project and set the Common Language Runtime support to "none" (probably found in the general tab).
If you don't want to have to lug around the mfc80.dll, then you can include it statically by changing the Use/Include MFC option to "statically", or something along the lines of that. It's also usually found in the general tab. Your exe will become much bigger, but you won't have to give it with your program in seperate files.
__________________
--v1.0 [COLOR=Gray]case modded[/COLOR] Xbox with a [COLOR=DarkGreen]160gb[/COLOR] HDD upgrade[URL="irc://irc.efnet.net/fileforums"] [/URL]
Last edited by Quall999; 04-01-2007 at 04:44.
|