Walkthrough: Linking a Content Type to a File Name Extension
You can define your own content type and link a file name extension to it by using editor Managed Extensibility Framework (MEF) extensions. In some cases, the file name extension has already been defined by a language service; nevertheless, to use it with MEF you still must link it to a content type.
Prerequisites
To follow this walkthrough, you must install the Visual Studio 2013 SDK. For more information, see Visual Studio Software Development Kit (SDK).
Creating a MEF Project
To create a MEF project
Create a C# or Visual Basic Editor Classifier project. Name the solution ContentTypeTest.
Open the source.extension.vsixmanifest file in the VSIX Manifest Editor.
Make sure that the Assets tab contains a MEF Component content type and that Project is set to the name of the project.
Save and close source.extension.vsixmanifest.
Delete the existing class files.
Defining the Content Type
To define a content type
Add a class file and name it FileAndContentTypes.
Add the following using directives (Imports statements in Visual Basic).
Imports System.ComponentModel.Composition Imports Microsoft.VisualStudio.Text.Classification Imports Microsoft.VisualStudio.Utilities
using System.ComponentModel.Composition; using Microsoft.VisualStudio.Text.Classification; using Microsoft.VisualStudio.Utilities;
Declare a static class (Module in Visual Basic) that contains the definitions.
Friend Module FileAndContentTypeDefinitions End Module
internal static class FileAndContentTypeDefinitions
In this class, export a ContentTypeDefinition named "hid" and declare its base definition to be "text".
<Export(), Name("hid"), BaseDefinition("text")> Friend myDefinition1 As ContentTypeDefinition
[Export] [Name("hid")] [BaseDefinition("text")] internal static ContentTypeDefinition hidingContentTypeDefinition;
Linking a File Name Extension to a Content Type
To link a file name extension to a content type
To map this content type to a file name extension, export a FileExtensionToContentTypeDefinition that has the extension ".hid" and the content type "hid".
<Export(), FileExtension(".hid"), ContentType("hid")> Friend myDefinition2 As FileExtensionToContentTypeDefinition
[Export] [FileExtension(".hid")] [ContentType("hid")] internal static FileExtensionToContentTypeDefinition hiddenFileExtensionDefinition;
Adding the Content Type to an Editor Export
To add the content type to an editor extension
Create an editor extension. For more information about creating editor extensions, see Getting Started with Editor Extensions.
When you export it, add a ContentTypeAttribute of type "hid" to it.
<Export(), ContentType("hid")> Friend myDefinition3 As FileExtensionToContentTypeDefinition
[Export] [ContentType("hid")]