Reference Manager Extensibility

You can add assembly, COM, project, SDK, or Windows metadata (.winmd) file references to your project by using the Reference Manager, which you can display from inside Visual Studio by using several APIs. Before the Reference Manager appears, your projects must configure it to show data from the correct locations. For example, a project that targets the .NET Framework 4 must populate assemblies from a different folder than a project that targets the .NET Framework 3.5.

You typically configure the Reference Manager by using a collection of ProviderContexts from the following providers:

A client component displays the Reference Manager by calling the ShowReferenceManager method on the Visual Studio service that's named SVsReferenceManager. A collection of IVsReferenceProviderContext classes is passed into this method as an argument. These contexts determine which tabs appear along the left side of the Reference Manager dialog box. Each provider contains all of the information necessary for the dialog box to populate and display the necessary data for you to add a reference to your project.

The following illustration summarizes the process.

Configuring the Reference ManagerConfiguring the Reference Manager

Adding a custom tab

To add a custom tab, you must implement an IReferenceProvider, an IVsReference, and an IVsReferenceProviderContext.

To add a custom tab

  1. Implement the IReferenceProvider interface, and then export it through the Managed Extensibility Framework (MEF) for the Reference Manager to use.

    The Reference Manager uses the ReferenceProvider object to generate the items that appear in the Reference Manager. The interface for that object is defined in Microsoft.VisualStudio.ReferenceManager.Contracts.dll.

  2. Implement a ProviderContext object.

    The Reference Manager uses the GUID property of this object to match the context to the provider. When the Reference Manager initializes, it passes the provider the ProviderContext that’s passed in through the ShowReferenceManager method. The ProviderContext should contain all of the information that the provider needs to enumerate IVsReferences.

  3. Extend the StandardReferenceProviderContext class.

    The Reference Manager provides some base classes, such as the StandardReferenceProviderContext class, that you can use to get started. Your Provider class can extend StandardReferenceProvider, and the reference item can extend StandardReferenceItem.

Your provider class might look like this example:

[Export(typeof(IReferenceProvider))]
[ExportMetadata("Name", "AssemblyReferenceProvider")]
[ExportMetadata("Guid", VSConstants.AssemblyReferenceProvider_string)]
internal class AssemblyReferenceProvider : StandardReferenceProvider
{
}

Your context class might look like this example:

[Export(typeof(IVsReferenceProviderContext))]
[Export(typeof(IVsAssemblyReferenceProviderContext))]
[Export("AssemblyReferenceProviderContext", typeof(IVsReferenceProviderContext))]
[Export(VSConstants.AssemblyReferenceProvider_string, typeof(IVsReferenceProviderContext))]
[PartCreationPolicy(System.ComponentModel.Composition.CreationPolicy.NonShared)]
[ExportMetadata("Name", "AssemblyReferenceProviderContext")]
[ExportMetadata("Guid", VSConstants.AssemblyReferenceProvider_string)]
public class AssemblyReferenceProviderContext : StandardReferenceProviderContext<IVsAssemblyReference, AssemblyIdentity>, IVsAssemblyReferenceProviderContext
{
}

For your reference item class, we recommend that you implement IWatchableReference and make your class serializable. By following this approach, you can take advantage of the cache serialization methods in the StandardReferenceProvider class, in addition to the ReferenceWatcher service, which automatically synchronizes item checks between the various tabs in the dialog box:

[Serializable]
public class StandardReferenceItem : IWatchableReference
{
}

The ReferenceProvider class contains two important methods. The first method is Initialize, which is called only once, when the provider is first loaded into the dialog box. The second method is SetContext, which is called immediately after Initialize but can be called again if the project systems fail to add any of the references that you specified and tried to commit.

Note

Because providers persist for the duration of the program, they can save state between sessions, but race conditions can occur if the user closes the dialog box and then quickly reopens it.

Override the existing source of tab enumeration

Some provider contexts have a property called Tabs, whose type is uint. This property is a bitmask, and its values control which tabs that provider displays. For example, the IVsAssemblyReferenceProviderContext interface defines a Tabs property, which can be set to the following values:

namespace Microsoft.VisualStudio.Shell.Interop
{
    public enum __VSASSEMBLYPROVIDERTAB
    {
        TAB_ASSEMBLY_FRAMEWORK = 1,
        TAB_ASSEMBLY_EXTENSIONS = 2,
        TAB_ASSEMBLY_ALL = 3,
    }
}

The IVsPlatformReferenceProviderContext class has a similar property. You can’t change the tab name, but you can control the header text that appears when the user chooses the tab. You can control this value through the following methods on the IVsAssemblyProviderContext class:

void SetTabTitle(uint etabId, string szTabTitle);

Override filter in the Browse dialog box

You can supply a custom type filter to the Browse dialog box in the Reference Manager by changing the value of the BrowseFilter property on the IFileReferenceProviderContext object. The following example demonstrates this technique from native code:

// Holds a list of provider contexts
CComSafeArray<LPUNKNOWN> spProviderContexts;

// Creates the file reference context for Browse
vsReferenceManager->CreateProviderContext(GUID_FileReferenceProvider, &pFileRefProviderContext));

// Sets the Browse filter
pFileRefProviderContext->put_BrowseFilter(wszFilter);
spProviderContexts.Add(pFileRefProviderContext);
// Show the reference manager
hr = srpRefMgr->ShowReferenceManager(
spVsRefMgrUser,
spProviderContexts,
strTitle,
HELPKEYWORD_AddReference,
GUID_AssemblyReferenceProvider,
wszFilter,
m_bstrStartBrowse);

See Also

Concepts

How to: Add or Remove References By Using the Reference Manager