Reputation:
I made a Windows Application in C#. Now, I have this question :
Is installing .NET Framework required for installing the Windows Application in other computers? Because it's gonna take a bit long time to install .NET Framework.
Upvotes: 0
Views: 230
Reputation: 2007
Normally yes, but this linker project may be able to get around this requirement.
I have never used this so don't know how effective it is, it may be worth a try though.
Upvotes: 0
Reputation: 48568
For Apps made in .Net Framework, yes .Net Framework is required.
If it is installing from a file on your file system then it is the fastest location to install your .Net Framework. Then installation speed depends on system speed. And yes it will take some time. .Net Framework 4.0 msi is ~ 40 MB
For Web-Installer, installation speed depends on internet-connection speed.
Upvotes: 0
Reputation: 6944
Yes. .NET Framework has to be installed in order to run your application.
Upvotes: 3