HelloWorld.ConfigureFubuMVC.ConfigureFubuMVC C# (CSharp) Method

ConfigureFubuMVC() public method

public ConfigureFubuMVC ( ) : FubuMVC.Coffee
return FubuMVC.Coffee
        public ConfigureFubuMVC()
        {
            Actions
                .IncludeClassesSuffixedWithController();

            Import<SparkEngine>();

            Routes
                .HomeIs<HomeIn>()
                .IgnoreControllerNamesEntirely()
                .IgnoreControllerFolderName()
                .RootAtAssemblyNamespace();

            Import<LessExtension>();
            Import<SassExtension>();
            Import<CoffeeExtension>();

            this.Assets().CombineAllUniqueAssetRequests();
        }
    }
ConfigureFubuMVC