Compiled my .net 2.0 project, under mono 2.4 profile in vs2010.
Running executable on win2k whitout .net framework.
Getting error: can not find mscoree.dll
How can I solve it?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can’t expect a .Net program to run on windows (or any other platform for that matter) without a CLR like Mono or .Net.
You can however use the mono mkbundle program to produce a single binary statically linked with the mono runtime and with your assemblies packed inside. It is not really intended for windows use but I think it should work.
mkbundle also has license issues, as you end up including a static copy of mono ( which is GPL ) inside. So you should take note of this if you are considering third-party distribution.