markus / ConvertService / ServiceBase / UploadFonts / Web.config @ d91efe5c
이력 | 보기 | 이력해설 | 다운로드 (3.02 KB)
1 | 950e6b84 | taeseongkim | <?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 | d91efe5c | taeseongkim | <system.webServer> |
13 | <staticContent> |
||
14 | <remove fileExtension=".ttf" /> |
||
15 | <mimeMap fileExtension=".ttf" mimeType="application/x-font-truetype" /> |
||
16 | </staticContent> |
||
17 | </system.webServer> |
||
18 | 950e6b84 | taeseongkim | <system.web> |
19 | <compilation debug="true" targetFramework="4.5" /> |
||
20 | <httpRuntime targetFramework="4.5" /> |
||
21 | <pages> |
||
22 | <namespaces> |
||
23 | <add namespace="System.Web.Optimization" /> |
||
24 | </namespaces> |
||
25 | <controls> |
||
26 | <add assembly="Microsoft.AspNet.Web.Optimization.WebForms" namespace="Microsoft.AspNet.Web.Optimization.WebForms" tagPrefix="webopt" /> |
||
27 | </controls> |
||
28 | </pages> |
||
29 | </system.web> |
||
30 | <runtime> |
||
31 | <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> |
||
32 | <dependentAssembly> |
||
33 | <assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f" /> |
||
34 | <bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2" /> |
||
35 | </dependentAssembly> |
||
36 | <dependentAssembly> |
||
37 | <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" /> |
||
38 | <bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" /> |
||
39 | </dependentAssembly> |
||
40 | <dependentAssembly> |
||
41 | <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" /> |
||
42 | <bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930" /> |
||
43 | </dependentAssembly> |
||
44 | </assemblyBinding> |
||
45 | </runtime> |
||
46 | <system.codedom> |
||
47 | <compilers> |
||
48 | <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" /> |
||
49 | <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+" /> |
||
50 | </compilers> |
||
51 | </system.codedom> |
||
52 | <applicationSettings> |
||
53 | <UploadFonts.Properties.Settings> |
||
54 | <setting name="FontFoler" serializeAs="String"> |
||
55 | <value>C:\MarkusFonts</value> |
||
56 | </setting> |
||
57 | </UploadFonts.Properties.Settings> |
||
58 | </applicationSettings> |
||
59 | </configuration> |