diff --git a/src/OneWare.Vhdl/VhdlModule.cs b/src/OneWare.Vhdl/VhdlModule.cs index bdf58f16..63f0aeec 100644 --- a/src/OneWare.Vhdl/VhdlModule.cs +++ b/src/OneWare.Vhdl/VhdlModule.cs @@ -21,20 +21,5 @@ public void OnInitialized(IContainerProvider containerProvider) containerProvider.Resolve().RegisterService(typeof(LanguageServiceVhdl),true, ".vhd", ".vhdl"); containerProvider.Resolve().RegisterNodeProvider(new VhdlNodeProvider(), ".vhd", ".vhdl"); - - containerProvider.Resolve().RegisterConstructContextMenu(x => - { - if (x.Count == 1 && x.First() is IProjectFile { Extension: ".vhd" or ".vhdl" }) - { - return new[] - { - new MenuItemModel("Test") - { - Header = "Test" - } - }; - } - return null; - }); } } \ No newline at end of file