Creating an installer for my solution
-
I'm creating a C# .net program which contains one .exe file and one .dll file. I need to create an installer for this program to let the user install my program from for example a cd. What is it I should do? I really have no idea. I know there is an installer class i .net but the documentation is terrible about how one uses it. Could anyone point out what I need to do?
-
I'm creating a C# .net program which contains one .exe file and one .dll file. I need to create an installer for this program to let the user install my program from for example a cd. What is it I should do? I really have no idea. I know there is an installer class i .net but the documentation is terrible about how one uses it. Could anyone point out what I need to do?
The
Installer
class is different from an application installer. The class is for unit installations (like installing a control in the VS.NET toolbox) or custom actions. To create an installation program for your application, add a new project to your solution in VS.NET and select "Setup and Deployment", then a Windows Installer project. It's pretty self-explanitory, but refer to the documentation if you have questions. Keep in mind that this is a very lite version of a Windows Installer IDE and can only do basic things. For a professional package, try Wise for Windows Installer or InstallShield's version, which is much, much more expensive.-----BEGIN GEEK CODE BLOCK----- Version: 3.21 GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++ -----END GEEK CODE BLOCK-----
-
I'm creating a C# .net program which contains one .exe file and one .dll file. I need to create an installer for this program to let the user install my program from for example a cd. What is it I should do? I really have no idea. I know there is an installer class i .net but the documentation is terrible about how one uses it. Could anyone point out what I need to do?