markus / ConvertService / ServiceBase / UploadFonts / Web.config @ master
이력 | 보기 | 이력해설 | 다운로드 (3.58 KB)
1 | 65674874 | taeseongkim | <?xml version="1.0" encoding="utf-8"?> |
---|---|---|---|
2 | 950e6b84 | taeseongkim | <!-- |
3 | ASP.NET 애플리케이션을 구성하는 방법에 대한 자세한 내용은 다음을 참조하세요. |
||
4 | https://go.microsoft.com/fwlink/?LinkId=169433 |
||
5 | --> |
||
6 | <configuration> |
||
7 | <configSections> |
||
8 | 43e1d368 | taeseongkim | <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> |
9 | 65674874 | taeseongkim | <section name="UploadFonts.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> |
10 | 950e6b84 | taeseongkim | </sectionGroup> |
11 | </configSections> |
||
12 | d91efe5c | taeseongkim | <system.webServer> |
13 | <staticContent> |
||
14 | 65674874 | taeseongkim | <remove fileExtension=".ttf" /> |
15 | <mimeMap fileExtension=".ttf" mimeType="application/x-font-truetype" /> |
||
16 | d91efe5c | taeseongkim | </staticContent> |
17 | </system.webServer> |
||
18 | 43e1d368 | taeseongkim | <!-- |
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 | 950e6b84 | taeseongkim | <system.web> |
27 | 65674874 | taeseongkim | <compilation debug="true" targetFramework="4.6.1" /> |
28 | <httpRuntime targetFramework="4.5" /> |
||
29 | 950e6b84 | taeseongkim | <pages> |
30 | <namespaces> |
||
31 | 65674874 | taeseongkim | <add namespace="System.Web.Optimization" /> |
32 | 950e6b84 | taeseongkim | </namespaces> |
33 | <controls> |
||
34 | 65674874 | taeseongkim | <add assembly="Microsoft.AspNet.Web.Optimization.WebForms" namespace="Microsoft.AspNet.Web.Optimization.WebForms" tagPrefix="webopt" /> |
35 | 950e6b84 | taeseongkim | </controls> |
36 | </pages> |
||
37 | </system.web> |
||
38 | <runtime> |
||
39 | <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> |
||
40 | <dependentAssembly> |
||
41 | 65674874 | taeseongkim | <assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f" /> |
42 | <bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2" /> |
||
43 | 950e6b84 | taeseongkim | </dependentAssembly> |
44 | <dependentAssembly> |
||
45 | 65674874 | taeseongkim | <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" /> |
46 | <bindingRedirect oldVersion="0.0.0.0-13.0.0.0" newVersion="13.0.0.0" /> |
||
47 | 950e6b84 | taeseongkim | </dependentAssembly> |
48 | <dependentAssembly> |
||
49 | 65674874 | taeseongkim | <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 | 950e6b84 | taeseongkim | </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 | 65674874 | taeseongkim | <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 | 950e6b84 | taeseongkim | </configuration> |