How to execute managed code without .net framework
-
Hello,everyboy. Recently,I'm trying to execute managed code in the system that have no net framework. Can you give me some suggestion?
-
Hello,everyboy. Recently,I'm trying to execute managed code in the system that have no net framework. Can you give me some suggestion?
-
Hello,everyboy. Recently,I'm trying to execute managed code in the system that have no net framework. Can you give me some suggestion?
Install the .NET Framework! Preferrably the same version that was used to write the application. There is no other option, unless you want to spend some serious money to do it. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
-
Hello,everyboy. Recently,I'm trying to execute managed code in the system that have no net framework. Can you give me some suggestion?
This is like asking how to run a binary without the runtime environment. You simply can't. .Net IL only makes sense in the CLR. I suppose you could write a scanner and research how to forward translate all IL to an equivient assembly on x86 but the cost of writing such a system would be astronomical. So much so it would be more costly than the application is worth. Far more costly than just installing the .Net Framework.