Sha256: 3e67932859db0fa7d29f005ad00b11696910fd87a20527dcdfad5890f3c0319b

Contents?: true

Size: 492 Bytes

Versions: 5

Compression:

Stored size: 492 Bytes

Contents

using System;
using System.Web;
using FubuMVC.Core;

namespace %ASSEMBLY_NAME%
{
    public class Global : HttpApplication
    {
        private FubuRuntime _runtime;

        protected void Application_Start(object sender, EventArgs e)
        {
            _runtime = FubuApplication.BootstrapApplication<%APPLICATION_SOURCE%>();
        }

        protected void Application_End(object sender, EventArgs e)
        {
            _runtime.Dispose();
        }
    }
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fubu-2.0.0.1887.alpha bin/templates/project/aspnet/Global.asax.cs
fubu-2.0.0.1853.alpha bin/templates/project/aspnet/Global.asax.cs
fubu-2.0.0.1824.alpha bin/templates/project/aspnet/Global.asax.cs
fubu-1.0.0.391 bin/templates/project/aspnet/Global.asax.cs
fubu-0.9.9.370 bin/templates/project/aspnet/Global.asax.cs