Skip to content

Instantly share code, notes, and snippets.

@cromica
Created January 15, 2019 18:46
Show Gist options
  • Save cromica/d8ffc5cdc51927e8cf6f63fc95ac4df1 to your computer and use it in GitHub Desktop.
Save cromica/d8ffc5cdc51927e8cf6f63fc95ac4df1 to your computer and use it in GitHub Desktop.
define a tell me plugin loader
[TellMeSearchProvider]
public class QuickInfoProvider : ITellMePluginLoader
{
public ISearchDataProvider InitializeProvider()
{
var quickInfoSearchDataProvider = new QuickInfoSearchDataProvider();
return quickInfoSearchDataProvider;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment