Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Run a .net application without installing .net client profile?

I have built a c#.net application in framework 4.0, i have no objection in installing .net for client's pc, but its so big to install on client end, is this not possible that there is some small setup or redist package, which we install and helps to run .net application easily, because installing a full fledge framework for just small apps looks very awkward. Please help.

Thanks in advance Atif

like image 504
Muhammad Atif Agha Avatar asked Sep 02 '11 21:09

Muhammad Atif Agha


2 Answers

If using .NET 4 specific features is less important than avoiding installation you can try to downgrade your app to .NET 2 or even .NET 1. Most modern versions of Windows come with older versions of .NET pre installed. The full list is here.

like image 61
Dmitry Avatar answered Nov 14 '22 23:11

Dmitry


The .NET client profile is the small redist package. ("Small" by comparison to the full .NET framework install.) That's as small as .NET gets.

like image 23
Joe White Avatar answered Nov 14 '22 23:11

Joe White