converting c#.net code to portable format (standalone exe)
-
i need to port my c#.net application to some machine without dot net framework. i am confused (as per my knowledge, this is not possible). can anyone help me out? is there any way that i can make it run it without framework installation...any cracks? (i've developed some console application to be run from commnad prompt)
Ashish Sehajpal
-
i need to port my c#.net application to some machine without dot net framework. i am confused (as per my knowledge, this is not possible). can anyone help me out? is there any way that i can make it run it without framework installation...any cracks? (i've developed some console application to be run from commnad prompt)
Ashish Sehajpal
The only options I'm aware of are commercial (and very expensive) applications.
Deja View - the feeling that you've seen this post before.
-
The only options I'm aware of are commercial (and very expensive) applications.
Deja View - the feeling that you've seen this post before.
money is not any issue... but the solution must be something by that we need not to install anything on the system of client.... whatever must be installed on my machine...i'll buy somehting(any cost), it must compile my application to some exe format regards,
Ashish Sehajpal
-
i need to port my c#.net application to some machine without dot net framework. i am confused (as per my knowledge, this is not possible). can anyone help me out? is there any way that i can make it run it without framework installation...any cracks? (i've developed some console application to be run from commnad prompt)
Ashish Sehajpal
-
money is not any issue... but the solution must be something by that we need not to install anything on the system of client.... whatever must be installed on my machine...i'll buy somehting(any cost), it must compile my application to some exe format regards,
Ashish Sehajpal
I believe Thinstall[^] offer a service where they will wrap up a .net exe with all the required stuff into 1 single executable that can be run on a system without .net installed. It really isn't cheap though:
Pricing in North America starts at $4,995 for the Thinstall Virtualization Suite
If it's just a simple console app, you should consider writing it in another language that doesn't require a runtime (c++ maybe) various versions of the .Net framework are included with various service packs, so it could already be on your client pc's, Aaron talks about it here[^]
Simon
-
Can I ask why you decided to target the .NET framework when the requirements were for an application that does not require this framework? It seems a bit convoluted to me?
dear...i have developed the application for some other client a long ago....now i do need to deliver it to some other who do not have framework
Ashish Sehajpal
-
I believe Thinstall[^] offer a service where they will wrap up a .net exe with all the required stuff into 1 single executable that can be run on a system without .net installed. It really isn't cheap though:
Pricing in North America starts at $4,995 for the Thinstall Virtualization Suite
If it's just a simple console app, you should consider writing it in another language that doesn't require a runtime (c++ maybe) various versions of the .Net framework are included with various service packs, so it could already be on your client pc's, Aaron talks about it here[^]
Simon
developing it some other platform is the only choice i think.... is there any utility that converts c# code into c++ code or runtime ?
Ashish Sehajpal