IISIntegration 299 B

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