I have a very low spec computer running XP Embedded (512Mb RAM, 512Mb HDD). IE 8 doesn't fit on it with .NET, so I was wondering if it's possible to compile a WinForm's project to a binary executable (making it independent of the .NET framework)... for what I am doing it seems like a bit of over kill to rewrite the executable in Delphi, VB, or something similar...

Cheers,

Andrew

link|improve this question

I'm pretty sure .NET apps only run on PCs with .NET runtimes. – Jonn Oct 11 '10 at 7:10
possible duplicate of Running .net based application without .NET Framework – Hans Passant Oct 11 '10 at 7:35
feedback

4 Answers

up vote 1 down vote accepted

You can try porting your .Net project to version 4 and then you can only install .Net 4 client profile which is of very small footprint. You will need XP Service Pack 3 installed though.

link|improve this answer
feedback

In the end, we got the hardware upgraded. For anyone in a similar position, .NET Client Profile is a good option, it was introduced in version 3.5 of the .NET Framework, hence me marking Yogesh as the best solution, even if I couldn't convert my app to a binary executable

link|improve this answer
feedback

See this too http://msdn.microsoft.com/en-us/library/6t9t5wcf.aspx.

link|improve this answer
That still doesn't remove the need of the .NET runtime though. It essentially just JITs AOT. – pst Nov 5 '10 at 4:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.