So my final query for my payroll application is -
How can I create a setup for payroll application?
All I need to know-
I have read below tutorial but I am not getting the real solution.
http://msdn.microsoft.com/en-us/library/vstudio/2kt85ked%28v=vs.100%29.aspx
(1) File -> New Project -> Other Project Types -> Setup and Deployment -> Visual Studio Installer
(2) Add a name to your setup project.
(3) Right click Application Folder -> Add -> project output
(4) ****Select your respective project's solution "primary output from yours.."****
(5) ****Add the respective 3rd party dlls.**** // Never forget this one.
(6) Right click setup project in solution explorer and BUILD it.
(7) Find the respective setup in debug folder(by default)
You will get the .exe
and .msi
in the folder.
You can change the configuration between Debug
and Release
,
Right click the setup project in solution explorer -> Properties.
You will find a configuration and select the respective one.
Check this What is the difference between Release and Debug modes?
Hope you understand.