Click here to Skip to main content
15,906,329 members
Please Sign up or sign in to vote.
1.75/5 (4 votes)
See more:
Hello world..
I have wrong thing when I unstall my program (windows form application)on client computer because the (.Netframework 3.5 sp1) in request computer client with.
My qusetion : How I can include important (Dll) lipraries with my setup file then don't need to install (.Netframework) in client computer.

Thank you very much.
Posted
Comments
Kenneth Haugland 9-Aug-12 14:34pm    
Yes, its called a redistibutable package. You can also inclued the .NET framework in some installers...
Christian Amado 9-Aug-12 14:37pm    
You must create a setup project and add the packages needed.
T.P.M 9-Aug-12 14:51pm    
yes Christian ,but I want program can do it .(Name,explain)for that program
[no name] 9-Aug-12 15:01pm    
There are lots of programs that do this, even Visual Studio itself.
T.P.M 9-Aug-12 15:05pm    
You explained the idea but I want steps ..give me the steps to do it ..
in article or session or any thing please this is my want just.
thank you

The dotnet assemblies you reference in your application will not be the only ones required. You must understand that these assemblies will in turn reference other dotnet assemblies in the framework. That is why the machine that you are installing your application to will have to have the dotnet framework of the appropriate version installed properly first. You can't just add an assembly here or there and expect it to work.
 
Share this answer
 
Use below link to create a setup project and deploying your application. It's a step by step guide. Then add .Net Framework package to your installer.

http://www.dreamincode.net/forums/topic/58021-deploying-a-c%23-application-visual-studio-setup-project/[^]
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900