开发者

Make .net framework libraries redistruable

开发者 https://www.devze.com 2023-03-09 10:00 出处:网络
i got an idea and i`d like to know if can it become true or not , now lets say i made a program using VS C# 2010 and i used开发者_如何转开发 the 2 libraries using system; and using system.IO;

i got an idea and i`d like to know if can it become true or not , now lets say i made a program using VS C# 2010 and i used开发者_如何转开发 the 2 libraries using system; and using system.IO;

can i take these 2 libraries from the .net frame work it self and include them into my application folder and import them into my application using references . so i don`t have to install the .net framework on the target machine , is this possible ? and if yes , where can i find the .net libraries to download and include .. thanks a lot for your help in advance .


No that's not possible since you'll still need CLR which is integrated part of .NET Framework. If you want a .NET application to run without the Framework installed, use VMware ThinApp.


No. Your users should install the .NET framework for your application. Here is a helpful site:

http://www.hanselman.com/smallestdotnet/


No. Simply because .NET Framework runs on a software environment and to make that happen you need CLR (Common Language Runtime) on the client's computer. Along with this the .NET Framework comprises of various other base classes which are needed for the application to run!

0

精彩评论

暂无评论...
验证码 换一张
取 消