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.
16 lines
830 B
16 lines
830 B
<?xml version="1.0"?>
|
|
<configuration>
|
|
<configSections>
|
|
<sectionGroup name="imageProcessor">
|
|
<section name="security" requirePermission="false" type="ImageProcessor.Web.Configuration.ImageSecuritySection, ImageProcessor.Web"/>
|
|
<section name="processing" requirePermission="false" type="ImageProcessor.Web.Configuration.ImageProcessingSection, ImageProcessor.Web"/>
|
|
<section name="caching" requirePermission="false" type="ImageProcessor.Web.Configuration.ImageCacheSection, ImageProcessor.Web"/>
|
|
</sectionGroup>
|
|
</configSections>
|
|
|
|
<imageProcessor>
|
|
<security configSource="config\imageprocessor\security.config" />
|
|
<caching configSource="config\imageprocessor\cache.config" />
|
|
<processing configSource="config\imageprocessor\processing.config" />
|
|
</imageProcessor>
|
|
</configuration>
|
|
|