How to run an exe file without C# installed?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I'm having problems with running an exe file created with C# on computers
which do not have VS C# installed. Is there any way to make it run on any
computers? Do I need to put my source code into an installer package? If so
where can I find it?

Sorry for many questions, thx in advance.
 
You should only need the .Net Framework (V1.0 or V1.1 depending on your app)
installed.
 
Johny,

You have to check if the proper .Net framework is installed.
(It is in the standard update procedures, so it would be probably that it
is).

When that is not you can ask the user to do that or make it in your own
procedures.

I hope this helps?

Cor
 
Back
Top