Skip to content

Instantly share code, notes, and snippets.

@CoreyKaylor
Created November 18, 2012 03:11
Show Gist options
  • Save CoreyKaylor/4103251 to your computer and use it in GitHub Desktop.
Save CoreyKaylor/4103251 to your computer and use it in GitHub Desktop.
Getting Started with FubuMVC Again
using System;
using FubuMVC.Core;
using FubuMVC.StructureMap;
using StructureMap;
namespace HelloWorld
{
public class Global : System.Web.HttpApplication
{
protected void Application_Start(object sender, EventArgs e)
{
FubuApplication.For<HelloWorldRegistry>()
.StructureMap(new Container())
.Bootstrap();
}
}
}
using FubuMVC.Core;
namespace HelloWorld
{
public class HelloWorldRegistry : FubuRegistry
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment