Created
November 18, 2012 03:11
-
-
Save CoreyKaylor/4103251 to your computer and use it in GitHub Desktop.
Getting Started with FubuMVC Again
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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