Skip to content

Commit

Permalink
remove test
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikMennen committed Nov 15, 2023
1 parent 605b433 commit a0a5e64
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions src/OneWare.Vhdl/VhdlModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,5 @@ public void OnInitialized(IContainerProvider containerProvider)
containerProvider.Resolve<ILanguageManager>().RegisterService(typeof(LanguageServiceVhdl),true, ".vhd", ".vhdl");

containerProvider.Resolve<NodeProviderService>().RegisterNodeProvider(new VhdlNodeProvider(), ".vhd", ".vhdl");

containerProvider.Resolve<IProjectExplorerService>().RegisterConstructContextMenu(x =>
{
if (x.Count == 1 && x.First() is IProjectFile { Extension: ".vhd" or ".vhdl" })
{
return new[]
{
new MenuItemModel("Test")
{
Header = "Test"
}
};
}
return null;
});
}
}

0 comments on commit a0a5e64

Please sign in to comment.