FRM Display Mat
FRM Display Mat
NET
Deploying the project on client computers is the last step in the creation of an application, and it
requires careful management. We were given the Setup and Deployment project under.net in order to
properly arrange the items and install the necessary files in the appropriate folders. It must be
included in the same solution that we used to create our application.
Setting up and delivering a software program to be installed on users' systems is referred to as setup
and deployment in C#.NET. To guarantee that the software runs properly on target computers, it
entails combining the application files, libraries, and configurations into an installer.
• Step 3: Application Information –> This step allows to provide detail about company,
application and current version of application.
o We can version number as “MajaorVersion.MinorVersion.BuildNumber”
• Step 4: Application requirement –> This step allows to OS and necessary prerequisites to be
installed on client machine to run your application.
o We can select all version of windows by choosing “No” or select appropriate version of
windows by choosing “Yes”.
o Select version of “.NET framework” require on client machine to run application.
o Make sure to choose all necessary options, this is important as if we miss any, our
application will not work on client machine.
• Step 6: Application Files –> Here we have to select files/folders which is required to run our
application.
o If we are not sure which configuration files and exe are required, the easiest way is to
select all files from “BIN” folder.
o If we have XML configuration files in different folder we can select “Add folder” option
to add them.
• Step 8: Application Registry –> If our application is reading specific value from registry than it
must be available in client machine’s registry. Here is we can add these values in registry.
This was the last step and now we are ready to generate your Setup/MSI package. Right click on
project name from solution explorer and click on Rebuild option. This will generate Setup/MSI in
“<your solution file path>\Express\DVD-5\DiskImages\DISK1” folder.