markus / ConvertService / ServiceBase / UploadFonts / Web.config @ e46ef756
이력 | 보기 | 이력해설 | 다운로드 (3.58 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.webServer> |
13 |
<staticContent> |
14 |
<remove fileExtension=".ttf" /> |
15 |
<mimeMap fileExtension=".ttf" mimeType="application/x-font-truetype" /> |
16 |
</staticContent> |
17 |
</system.webServer> |
18 |
<!-- |
19 |
web.config 변경 내용에 대한 설명은 http://go.microsoft.com/fwlink/?LinkId=235367을 참고하십시오. |
20 |
|
21 |
다음 특성은 <httpRuntime> 태그에 설정할 수 있습니다. |
22 |
<system.Web> |
23 |
<httpRuntime targetFramework="4.5.1" /> |
24 |
</system.Web> |
25 |
--> |
26 |
<system.web> |
27 |
<compilation debug="true" targetFramework="4.6.1" /> |
28 |
<httpRuntime targetFramework="4.5" /> |
29 |
<pages> |
30 |
<namespaces> |
31 |
<add namespace="System.Web.Optimization" /> |
32 |
</namespaces> |
33 |
<controls> |
34 |
<add assembly="Microsoft.AspNet.Web.Optimization.WebForms" namespace="Microsoft.AspNet.Web.Optimization.WebForms" tagPrefix="webopt" /> |
35 |
</controls> |
36 |
</pages> |
37 |
</system.web> |
38 |
<runtime> |
39 |
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> |
40 |
<dependentAssembly> |
41 |
<assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f" /> |
42 |
<bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2" /> |
43 |
</dependentAssembly> |
44 |
<dependentAssembly> |
45 |
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" /> |
46 |
<bindingRedirect oldVersion="0.0.0.0-13.0.0.0" newVersion="13.0.0.0" /> |
47 |
</dependentAssembly> |
48 |
<dependentAssembly> |
49 |
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" /> |
50 |
<bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930" /> |
51 |
</dependentAssembly> |
52 |
<dependentAssembly> |
53 |
<assemblyIdentity name="Microsoft.Web.Infrastructure" publicKeyToken="31bf3856ad364e35" culture="neutral" /> |
54 |
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0" /> |
55 |
</dependentAssembly> |
56 |
</assemblyBinding> |
57 |
</runtime> |
58 |
<applicationSettings> |
59 |
<UploadFonts.Properties.Settings> |
60 |
<setting name="FontFoler" serializeAs="String"> |
61 |
<value>C:\MarkusFonts</value> |
62 |
</setting> |
63 |
</UploadFonts.Properties.Settings> |
64 |
</applicationSettings> |
65 |
<system.codedom> |
66 |
<compilers> |
67 |
<compiler extension=".cs" language="c#;cs;csharp" warningLevel="4" compilerOptions="/langversion:7.0 /nowarn:1659;1699;1701;612;618" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> |
68 |
<compiler extension=".vb" language="vb;vbs;visualbasic;vbscript" warningLevel="4" compilerOptions="/langversion:default /nowarn:41008,40000,40008 /define:_MYTYPE=\"Web\" /optionInfer+" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> |
69 |
</compilers> |
70 |
</system.codedom> |
71 |
</configuration> |