- Create an ASP.NET Empty Web Application
- Install the FubuMVC.References NuGet
- Add a global.asax and copy/paste the Global.cs file
Can you get to diagnostics (/_fubu)?
public class Global : System.Web.HttpApplication | |
{ | |
protected void Application_Start(object sender, EventArgs e) | |
{ | |
FubuApplication | |
.For<Test>() | |
.StructureMapObjectFactory() | |
.Bootstrap(RouteTable.Routes); | |
} | |
} | |
public class Test : FubuRegistry | |
{ | |
public Test() | |
{ | |
IncludeDiagnostics(true); | |
} | |
} |
Yeah :)