Top Banner
Deployment in Visual Studio Setup and Deployment Projects Install Shield Limited Edition Windows Installer XML Toolset
13
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Setup deployment in vs

Deployment in Visual Studio

Setup and Deployment

Projects

Install Shield Limited Edition

Windows Installer XML

Toolset

Page 2: Setup deployment in vs

Setup and Deployment - step by step

• Add Setup project to solution

Page 3: Setup deployment in vs

• Set properties of Setup

Page 4: Setup deployment in vs

• Add Project output to file system application folder

Page 5: Setup deployment in vs

• Create shortcut from the output file and move to desktop or program menu

Page 6: Setup deployment in vs

• Customize UI in User interface Editor

Page 7: Setup deployment in vs

• Add custom actions to Extent features

Page 8: Setup deployment in vs

• Add Installer class to project and refer that dll to Custom action

• On this class we can override functions

Page 9: Setup deployment in vs

• Pass installer variables /TARGETDIR = "[TARGETDIR]“

• in custom action data property of dll reference

• Access those variables as Context.Parameters["TARGETDIR"];

Page 10: Setup deployment in vs

Install Shield - step by step

• All the above as Easy configured by GUI

Page 11: Setup deployment in vs

WIX

• Microsoft uses it to deploy its own software including Microsoft Office and Visual Studio

• it gives you greater control over how things work (eg: You get much more control when you write the HTML yourself as opposed to using a WYSIWYG software)

• Its simply configure setup in XML files

Page 12: Setup deployment in vs
Page 13: Setup deployment in vs