Show us in simple steps to create setup & deployment project for windows application?



Show us in simple steps to create setup & deployment project for windows application?..

Answer / Daya Shanker Kumar Gupta

To create a setup and deployment project for a Windows application in C#, you can use Visual Studio's Setup and Deployment Projects. Here are the basic steps:
1. Create a new solution with your C# project.
2. Right-click on the solution and select 'Add' > 'New Project.'
3. Choose 'Setup and Deployment' > 'Visual C++ Installer Class Extension' in the dialog box that appears. Name the project appropriately.
4. Add files to the project by right-clicking on the project, selecting 'Add' > 'Existing Item(s),' and then choosing your application files, icons, etc.
5. Configure the installer properties such as product name, description, author, and more by double-clicking on each item in the 'File System Editor.'
6. Build and run the setup project to create a .msi file that can be used for installation.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Sharp Interview Questions

What namespaces are necessary to create a localized application?

2 Answers   Rolta, Siebel Systems, Visual Soft,


Explain the feature of c# language?

1 Answers  


FOR EXAMPLE : CLASS Dotnet { } creating object: Dotnet dn=new Dotnet(); NOW THE QUESTION IS WHICH IS CALLED AS OBJECT ?EITHER dn OR new Dotnet() and CAN YOU PROVE YOUR ANSWER?????PLEASE REPLY...

1 Answers  


Why use a singleton instead of static methods?

1 Answers  


How you will handle session when deploying application in more than a server? Describe session handling in a webform, how does it work and what are the limits?

3 Answers   Microsoft,


What are PE(Portable Executable)?

1 Answers   MCN Solutions,


Can private virtual methods be overridden in c#.net?

1 Answers  


Explain 'structure padding'?

1 Answers   DELL,


What does void mean in c#?

1 Answers  


What is orm in c#?

1 Answers  


Can constructor have return type c#?

1 Answers  


f i give input like 1,1,4,5,6,1,2,5,4,1,2, then output should be like : 1-4, 2-2, 4-2, 5-1, 6-1 which means 1 occurs 4 times, 2 occurs 2 times like so.

7 Answers  


Categories