Last active
November 7, 2024 13:10
Revisions
-
madskristensen revised this gist
Sep 30, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -10,7 +10,7 @@ public class ExtensionPackage : Package protected override void Initialize() { base.Initialize(); this.SatisfyImportsOnce(); // This calls the extension method ITableManager errorsTable = _tableManagerProvider.GetTableManager(StandardTables.ErrorsTable); } -
madskristensen created this gist
Sep 30, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ using System.ComponentModel.Composition; using Microsoft.VisualStudio.Shell; using Microsoft.VisualStudio.Shell.TableManager; public class ExtensionPackage : Package { [Import] private ITableManagerProvider _tableManagerProvider; protected override void Initialize() { base.Initialize(); this.SatisfyImportsOnce(); ITableManager errorsTable = _tableManagerProvider.GetTableManager(StandardTables.ErrorsTable); } } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,21 @@ using System.ComponentModel.Composition; using Microsoft.VisualStudio.ComponentModelHost; using Microsoft.VisualStudio.Shell; public static class MefExtensions { private static IComponentModel _compositionService; public static void SatisfyImportsOnce(this object o) { if (_compositionService == null) { _compositionService = ServiceProvider.GlobalProvider.GetService(typeof(SComponentModel)) as IComponentModel; } if (_compositionService != null) { _compositionService.DefaultCompositionService.SatisfyImportsOnce(o); } } }