Bootstrapper manifest generator for Visual Studio 2010

I am looking for a Bootstrapper manifest generator for VS2010. Where can i download it? I want to include the MySQL installer in my C # installation project in the way I incorporate Net Framework. Can you help me?

+8
c # mysql setup-project bootstrapper
source share
1 answer

You can enable an additional installer with installation installer in VS2010 using BMG_2008 . Just create a manifest using BMG_2008.

The Build Results dialog box, since you need to find the generated files and the manifest file, usually this place is here "C: \ Program Files \ Microsoft SDK \ Windows \ v6.0A \ Bootstrapper \ Packages \ Your Installer" Because this version of the manifest generator Bootstrapper is version 2008, so it is created in the v6.0 folder. In order for these Prerequisites to appear in the Visual Studio 2010 IDE, you need to do some tricks. Just copy the entire folder to this path "C: \ Program Files \ Microsoft SDKs \ Windows \ v7.0A \ Bootstrapper \ Packages", folder v7.0A is the location for all prerequisite packages for Visual Studio 2010 projects.

After copying, you can now view this prerequisite package in the Prerequisite VS2010 dialog box.

+7
source share

All Articles