What file need when distribute

  • Thread starter Thread starter jun_qu
  • Start date Start date
J

jun_qu

I have compile my first C# to exe.

My question is what library file else need to run this exe
at a compute without installed C#.

Thanks
 
I have compile my first C# to exe.

My question is what library file else need to run this exe
at a compute without installed C#.

Thanks

Of course, it depends on what your project references, but at the least, the
..NET Framework is necessary.

HTH,
Eric
 
I have compile my first C# to exe.

My question is what library file else need to run this exe
at a compute without installed C#.

You need to include the framework redistributable, which must be
installed. You can't run a .NET program without the framework
installed.
 
Back
Top