-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWeb.config
35 lines (30 loc) · 1.47 KB
/
Web.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?xml version="1.0"?>
<!--
For more information on how to configure your ASP.NET application, please visit
https://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<configSections>
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<section name="DynamicImageHandler.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
</sectionGroup>
</configSections>
<system.web>
<compilation debug="true" targetFramework="4.5.2" />
<httpRuntime targetFramework="4.5.2" />
</system.web>
<applicationSettings>
<DynamicImageHandler.Properties.Settings>
<setting name="FileSystemImageStorePath" serializeAs="String">
<value>|AppData|</value>
</setting>
<!-- Uncomment to test Xaml encoder -->
<setting name="ImageToolType" serializeAs="String">
<value>DynamicImageHandler.ImageTool.Wpf.WpfImageTool, DynamicImageHandler.ImageTool.Wpf</value>
</setting>
<!--<setting name="ImageToolType" serializeAs="String">
<value>DynamicImageHandler.ImageTool.FreeImage.FreeImageImageTool, DynamicImageHandler.ImageTool.FreeImage</value>
</setting>-->
</DynamicImageHandler.Properties.Settings>
</applicationSettings>
</configuration>