ditoskas Posted March 5, 2007 Posted March 5, 2007 please help!!! i want to learn how can i find the important redistibutables(Prerequisite,Merge Modules,dll,...) for my application to create the setup program? i use vb 2005 or vc# 2005 Quote
Nate Bross Posted March 9, 2007 Posted March 9, 2007 I believe that you need to add a "Deployment" project to your solution. Quote ~Nate� ___________________________________________ Please use the [vb]/[cs] tags on posted code. Please post solutions you find somewhere else. Follow me on Twitter here.
Leaders snarfblam Posted March 9, 2007 Leaders Posted March 9, 2007 An alternative would be to go to microsoft.com and find the DotNet redistributable package and provide a link to that alongside your executable. Other DLLs should not be distributed unless the license allows it. (The proper thing to do in this case would be to instruct the user how to obtain his own copy of the DLL.) What I often do, since I usually distribute applications via the web, is distribute only the executable and other necessary files authored by me, and provide links to downloads for other components (unless they are small in size), avoiding large redistributables (especially the DotNet redistributable). But if you want it all in one package, Nate Bross has the right idea with the Deployment project (this is only available with Standard versions of Visual Studio or higher). Quote [sIGPIC]e[/sIGPIC]
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.