I created the helper class
namespace SEM.API.Helpers { public static class Navigation { public static string BuildSomething(this HtmlHelper h
and added namespace to webconfig
Make sure you did this in ~/Views/web.config and not in ~/web.config.
~/Views/web.config
~/web.config
Another thing to try is to add the @using directive to your view:
@using
@using SEM.API.Helpers @Html.BuildSomething()