Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>This isn't a suggested scenario.</p> <p>From MSDN, "You cannot use a Windows Installer package (MSI) to deploy a VSIX package. However, you can extract the contents of a VSIX package for MSI deployment. This document shows how to prepare a project whose default output is a VSIX package for inclusion in a Setup project." </p> <p>Here are some pages with more information:</p> <p><a href="http://msdn.microsoft.com/en-us/library/ee332502.aspx">MSDN page</a></p> <p><a href="http://blogs.msdn.com/b/visualstudio/archive/2009/10/27/vsix-and-msi.aspx">VS Blog</a></p> <p><a href="http://social.msdn.microsoft.com/Forums/en-US/vsx/thread/b6b06bff-5464-4bff-8ffb-66bbae6debe0/">MSDN Forum</a></p> <hr> <p>Adding more information about how you could accomplish this:</p> <p>You can't use the vsix itself, but you can unzip it (just rename the vsix to zip) and add all of the files to your MSI manually. As it says on the <a href="http://blogs.msdn.com/b/visualstudio/archive/2009/10/27/vsix-and-msi.aspx">VS Blog</a>, you need to make sure that you include the vsixmanifest file (it should be in the vsix) and make sure that you set the "InstalledByMsi" property to true. If you have a pkgdef file, make sure you include that as well. </p> <p>Again, as it says on the <a href="http://blogs.msdn.com/b/visualstudio/archive/2009/10/27/vsix-and-msi.aspx">VS Blog</a>, all of these files should be installed to </p> <pre><code>"%VSInstallDir%\Common7\Ide\Extensions\Your Company\Your Product\Version" </code></pre> <p>(And you'll need to replace %VSInstallDir% based on the actual location.) </p> <p>You asked:</p> <blockquote> <p>How to put some files in non special folders using visual studio installer.</p> </blockquote> <p>Vsix packages installed by the standard vsix installer will always put all of the files under the same folder in "%VSInstallDir%\Common7\Ide\Extensions...", but because you're using an MSI, you should be able to put other files in other places if you want.</p> <p>I haven't tried this myself, but I've worked with vsix quite a bit.</p> <p>I hope this helps!</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload