How to always open the vsixmanifest in XML view

The new VSIX projects contain a manifest that is by default opened with a designer. No matter how many times you specify that you want to open it with the XML editor by default, VS will continue to open it with the designer.

The only way to force the change is to manually modify the .csproj as follows:

<ItemGroup>
  <None Include="source.extension.vsixmanifest">
    <SubType>DesignerCode</SubType>
  </None>
</ItemGroup>

(on Beta1, the manifest file name would be just extension.vsixmanifest)

Read full article

No Comments