32 lines
1.2 KiB
XML
32 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
有关如何配置 ASP.NET 应用程序的详细信息,请访问
|
|
https://go.microsoft.com/fwlink/?LinkId=169433
|
|
-->
|
|
|
|
<configuration>
|
|
<configSections>
|
|
<section name="routing" type="RouterInterface.Configuration.RoutingConfigurationSection,RouterInterface"/>
|
|
<section name="breakpoint" type="BreakpointTransmission.Service.Configuration.BreakpointConfigurationSection, BreakpointTransmission.Service"/>
|
|
</configSections>
|
|
<system.web>
|
|
<compilation debug="true" targetFramework="4.0" />
|
|
<httpRuntime maxRequestLength="204800" />
|
|
</system.web>
|
|
<routing>
|
|
<httpUploadFilePathRouting type="PackUploadRelease.BreakpointFilePathRouting,PackUploadRelease"/>
|
|
</routing>
|
|
<breakpoint>
|
|
<logProvider type="BreakpointTransmission.Service.Logging.TextLogger,BreakpointTransmission.Service"/>
|
|
<plugins>
|
|
<plugin name="plugin" type="PackUploadRelease.Plugin,PackUploadRelease"/>
|
|
</plugins>
|
|
</breakpoint>
|
|
<system.webServer>
|
|
<handlers>
|
|
<add path="*" name="BreakpointTransmissionHandler" verb="POST,HEAD" type="BreakpointTransmission.Service.BreakpointAcceptFileHandler,BreakpointTransmission.Service"/>
|
|
</handlers>
|
|
</system.webServer>
|
|
</configuration>
|