mirror of https://github.com/SixLabors/ImageSharp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.1 KiB
31 lines
1.1 KiB
// --------------------------------------------------------------------------------------------------------------------
|
|
// <copyright file="StartUp.cs" company="James South">
|
|
// Copyright (c) James South.
|
|
// Licensed under the Apache License, Version 2.0.
|
|
// </copyright>
|
|
// <summary>
|
|
// Provides methods to handle startup events.
|
|
// </summary>
|
|
// --------------------------------------------------------------------------------------------------------------------
|
|
|
|
[assembly: System.Web.PreApplicationStartMethod(typeof(ImageProcessor.Web.Helpers.StartUp), "PreApplicationStart")]
|
|
|
|
namespace ImageProcessor.Web.Helpers
|
|
{
|
|
using ImageProcessor.Web.HttpModules;
|
|
using Microsoft.Web.Infrastructure.DynamicModuleHelper;
|
|
|
|
/// <summary>
|
|
/// Provides methods to handle startup events.
|
|
/// </summary>
|
|
public static class StartUp
|
|
{
|
|
/// <summary>
|
|
/// The pre application start.
|
|
/// </summary>
|
|
public static void PreApplicationStart()
|
|
{
|
|
DynamicModuleUtility.RegisterModule(typeof(ImageProcessingModule));
|
|
}
|
|
}
|
|
}
|
|
|