| 123456789101112131415161718192021222324252627282930 |
- commit 2bb9a8aaf950d27def213b800b0712b040293161
- Author: pan-wang <[email protected]>
- Date: Mon Mar 19 15:30:55 2018 -0700
- Adding handlerSettings configuration to aspnetcore schema for future use (#689)
- diff --git a/src/AspNetCore/aspnetcore_schema.xml b/src/AspNetCore/aspnetcore_schema.xml
- index d4db49bfb99..d65be071958 100644
- --- a/src/AspNetCore/aspnetcore_schema.xml
- +++ b/src/AspNetCore/aspnetcore_schema.xml
- @@ -27,7 +27,6 @@
- <attribute name="disableStartUpErrorPage" type="bool" defaultValue="false" />
- <attribute name="hostingModel" type="string" />
- <element name="recycleOnFileChange">
- -
- <collection addElement="file" clearElement="clear">
- <attribute name="path" type="string" required="true" validationType="nonEmptyString" expanded="true"/>
- </collection>
- @@ -38,5 +37,11 @@
- <attribute name="value" type="string" required="true"/>
- </collection>
- </element>
- + <element name="handlerSettings">
- + <collection addElement="handlerSetting" clearElement="clear" >
- + <attribute name="name" type="string" required="true" validationType="nonEmptyString"/>
- + <attribute name="value" type="string" required="true"/>
- + </collection>
- + </element>
- </sectionSchema>
- </configSchema>
|