27 lines
619 B
C#
27 lines
619 B
C#
using System.Runtime.InteropServices;
|
|
using System.Web;
|
|
using Microsoft.Extensions.Logging;
|
|
using Umbraco.Core;
|
|
using Umbraco.Core.Cache;
|
|
using Umbraco.Core.Configuration;
|
|
using Umbraco.Core.Configuration.Models;
|
|
using Umbraco.Core.Hosting;
|
|
using Umbraco.Core.IO;
|
|
using Umbraco.Core.Logging;
|
|
using Umbraco.Core.Runtime;
|
|
using Umbraco.Web.Runtime;
|
|
using ConnectionStrings = Umbraco.Core.Configuration.Models.ConnectionStrings;
|
|
|
|
namespace Umbraco.Web
|
|
{
|
|
/// <summary>
|
|
/// Represents the Umbraco global.asax class.
|
|
/// </summary>
|
|
public class UmbracoApplication : UmbracoApplicationBase
|
|
{
|
|
|
|
|
|
|
|
}
|
|
}
|