Using the WiX Toolset to create installers in Visual Studio C# projects
Here is some of their online documentation on how to use the WiX Toolset to create installers: https://www.firegiant.com/wix/tutorial/getting-started Here is a quick and concise guide to set up using the WiX Toolset in a Visual Studio project, in order to create installation packages, from start to finish. Step 1: Install WiX Toolset First make sure you have installed the WiX toolset from the following site: http://wixtoolset.org/releases/ WiX Toolset when run looks like this: [caption id="attachment_7571" align="alignnone" width="355"] WiX Toolset to create installers[/caption] Step 2: Create a new Visual Studio project In this example I'm creating a new WPF application: Step 3: Add a WiX installer project to the solution Right click on your solution folder and select Add > New Project... Select 'Windows Installer XML' > 'Setup Project' and give your installer project a name: Step 4: generate GUID...