0% found this document useful (0 votes)
41 views

Deployment

The document outlines 13 steps to create a Windows application, build a setup project to deploy it, and test the deployed application. It involves creating a C# Windows project, designing and coding the application, building it in release mode, adding it to a setup project, configuring shortcuts, building the setup project, extracting it, and running the deployed application.

Uploaded by

ramesh8585
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
41 views

Deployment

The document outlines 13 steps to create a Windows application, build a setup project to deploy it, and test the deployed application. It involves creating a C# Windows project, designing and coding the application, building it in release mode, adding it to a setup project, configuring shortcuts, building the setup project, extracting it, and running the deployed application.

Uploaded by

ramesh8585
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 8

Step 1 Create your own windows application. Create a new Windows application project in C# and named it as Sample.

Step 2 Design your own application. Here we have a simple login form for example.

Step After completing the design and coding, build the solution of the project in release mode.

Step 4 Check the Release folder for the file ProjectName.exe. Here in this example we have the project name as sample so we can find a file with the name Sample.exe. Double click the executable file and check the example.

Step 5 Create a Deployment Project. Select the Other Project Types -> Setup and Deployment > Setup project. Here we have the setup project for example as SampleSetup.

Step Add the Sample.exe project application file inside the Application Folder.

Step 7 To make a shortcut for the project right click File System on Target Machine and create shortcut of the application. Here in this example the project shortcut is created in program files folder.

Step Create the shortcut of the application.

Step Rename the shortcut of the application.

Step 10 Move the Shortcut file to specified target. Note if you need another shortcut for some other target also create use same steps.

Step Now build the solution in release mode.

11

Step The setup file created in release folder of the project specified path.

12

Step Run the setup, step the path to extract.

13

Step 14 The SampleSetup project is extracted and shortcuts are created. Now run your application.

You might also like