Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 438 Bytes

IProfilableProjectProvider.md

File metadata and controls

14 lines (12 loc) · 438 Bytes

IProfilableProjectProvider

The IProfilableProjectProvider interface can be exported to provide functionality for the IVsProfilableProjectCfg interface in Visual Studio.

    [Export(typeof(IVsProfilableProjectCfg))]
    [AppliesTo("MyProjectType")]
    internal class MyProfilingProvider : IVsProfilableProjectCfg
    {
        // implementation of IVsProfilableProjectCfg members:
    }