markus / ConvertService / ServiceBase / UploadFonts / Web.config @ 43e1d368
이력 | 보기 | 이력해설 | 다운로드 (3.28 KB)
1 |
<?xml version="1.0"?> |
---|---|
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.5.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-12.0.0.0" newVersion="12.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 |
</assemblyBinding> |
53 |
</runtime> |
54 |
<system.codedom> |
55 |
<compilers> |
56 |
<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"/> |
57 |
<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+"/> |
58 |
</compilers> |
59 |
</system.codedom> |
60 |
<applicationSettings> |
61 |
<UploadFonts.Properties.Settings> |
62 |
<setting name="FontFoler" serializeAs="String"> |
63 |
<value>C:\MarkusFonts</value> |
64 |
</setting> |
65 |
</UploadFonts.Properties.Settings> |
66 |
</applicationSettings> |
67 |
</configuration> |