markus / ConvertService / ServiceBase / UploadFonts / Web.config @ 950e6b84
이력 | 보기 | 이력해설 | 다운로드 (2.83 KB)
1 |
<?xml version="1.0" encoding="utf-8"?> |
---|---|
2 |
<!-- |
3 |
ASP.NET 애플리케이션을 구성하는 방법에 대한 자세한 내용은 다음을 참조하세요. |
4 |
https://go.microsoft.com/fwlink/?LinkId=169433 |
5 |
--> |
6 |
<configuration> |
7 |
<configSections> |
8 |
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" > |
9 |
<section name="UploadFonts.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> |
10 |
</sectionGroup> |
11 |
</configSections> |
12 |
<system.web> |
13 |
<compilation debug="true" targetFramework="4.5" /> |
14 |
<httpRuntime targetFramework="4.5" /> |
15 |
<pages> |
16 |
<namespaces> |
17 |
<add namespace="System.Web.Optimization" /> |
18 |
</namespaces> |
19 |
<controls> |
20 |
<add assembly="Microsoft.AspNet.Web.Optimization.WebForms" namespace="Microsoft.AspNet.Web.Optimization.WebForms" tagPrefix="webopt" /> |
21 |
</controls> |
22 |
</pages> |
23 |
</system.web> |
24 |
<runtime> |
25 |
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> |
26 |
<dependentAssembly> |
27 |
<assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f" /> |
28 |
<bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2" /> |
29 |
</dependentAssembly> |
30 |
<dependentAssembly> |
31 |
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" /> |
32 |
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" /> |
33 |
</dependentAssembly> |
34 |
<dependentAssembly> |
35 |
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" /> |
36 |
<bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930" /> |
37 |
</dependentAssembly> |
38 |
</assemblyBinding> |
39 |
</runtime> |
40 |
<system.codedom> |
41 |
<compilers> |
42 |
<compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=2.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:6 /nowarn:1659;1699;1701" /> |
43 |
<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=2.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:14 /nowarn:41008 /define:_MYTYPE=\"Web\" /optionInfer+" /> |
44 |
</compilers> |
45 |
</system.codedom> |
46 |
<applicationSettings> |
47 |
<UploadFonts.Properties.Settings> |
48 |
<setting name="FontFoler" serializeAs="String"> |
49 |
<value>C:\MarkusFonts</value> |
50 |
</setting> |
51 |
</UploadFonts.Properties.Settings> |
52 |
</applicationSettings> |
53 |
</configuration> |