is't possible 2 run .net apps without .net framework support?

G

Guest

hi
i want 2 run apps which i have coded with C# on machines that don't have
..NET installed and without installing .NET with the setup project u can say i
want a way 2 compile msil 2 binary files
thanx
 
M

Morten Wennevik

Hi Fady,

Basically no, you need .net framework installed on the client machines.
It's a bit like running java applications without java installed, the latest
games without DirectX installed, or windows applications without windows
installed. Ship the framework redistributable with your program.

That said, I believe there are some companies selling software that you can
run a .net program inside without having the full framework, but I couldn't
tell you who or how it works.

Happy Coding!
Morten Wennevik [C# MVP]
 
G

Guest

Morten Wennevik said:
Hi Fady,

Basically no, you need .net framework installed on the client machines.
It's a bit like running java applications without java installed, the latest
games without DirectX installed, or windows applications without windows
installed. Ship the framework redistributable with your program.

That said, I believe there are some companies selling software that you can
run a .net program inside without having the full framework, but I couldn't
tell you who or how it works.

remotesoft linker is one. but I'd strongly recommend against it. it's
better to have the whole framework installed anyway.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top