프로젝트

일반

사용자정보

개정판 43e1d368

ID43e1d3684849725d38b5c74b43d4bb593f546d7a
상위 d91efe5c
하위 42d49521

김태성이(가) 약 2년 전에 추가함

issue #0000 코드 정리

Change-Id: I7c8ba4ef6d78a7e4f51b72f226507cddac722939

차이점 보기:

ConvertService/ServiceBase/UploadFonts/Web.config
1
<?xml version="1.0" encoding="utf-8"?>
1
<?xml version="1.0"?>
2 2
<!--
3 3
  ASP.NET 애플리케이션을 구성하는 방법에 대한 자세한 내용은 다음을 참조하세요.
4 4
  https://go.microsoft.com/fwlink/?LinkId=169433
5 5
  -->
6 6
<configuration>
7 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" />
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 10
    </sectionGroup>
11 11
  </configSections>
12 12
  <system.webServer>
13 13
    <staticContent>
14
      <remove fileExtension=".ttf" />
15
      <mimeMap fileExtension=".ttf" mimeType="application/x-font-truetype" />
14
      <remove fileExtension=".ttf"/>
15
      <mimeMap fileExtension=".ttf" mimeType="application/x-font-truetype"/>
16 16
    </staticContent>
17 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
  -->
18 26
  <system.web>
19
    <compilation debug="true" targetFramework="4.5" />
20
    <httpRuntime targetFramework="4.5" />
27
    <compilation debug="true" targetFramework="4.5.1"/>
28
    <httpRuntime targetFramework="4.5"/>
21 29
    <pages>
22 30
      <namespaces>
23
        <add namespace="System.Web.Optimization" />
31
        <add namespace="System.Web.Optimization"/>
24 32
      </namespaces>
25 33
      <controls>
26
        <add assembly="Microsoft.AspNet.Web.Optimization.WebForms" namespace="Microsoft.AspNet.Web.Optimization.WebForms" tagPrefix="webopt" />
34
        <add assembly="Microsoft.AspNet.Web.Optimization.WebForms" namespace="Microsoft.AspNet.Web.Optimization.WebForms" tagPrefix="webopt"/>
27 35
      </controls>
28 36
    </pages>
29 37
  </system.web>
30 38
  <runtime>
31 39
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
32 40
      <dependentAssembly>
33
        <assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f" />
34
        <bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2" />
41
        <assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f"/>
42
        <bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2"/>
35 43
      </dependentAssembly>
36 44
      <dependentAssembly>
37
        <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" />
38
        <bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" />
45
        <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed"/>
46
        <bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0"/>
39 47
      </dependentAssembly>
40 48
      <dependentAssembly>
41
        <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
42
        <bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930" />
49
        <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35"/>
50
        <bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930"/>
43 51
      </dependentAssembly>
44 52
    </assemblyBinding>
45 53
  </runtime>
46 54
  <system.codedom>
47 55
    <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=\&quot;Web\&quot; /optionInfer+" />
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=\&quot;Web\&quot; /optionInfer+"/>
50 58
    </compilers>
51 59
  </system.codedom>
52 60
  <applicationSettings>

내보내기 Unified diff

클립보드 이미지 추가 (최대 크기: 500 MB)