Reescritura de URL de IIS: agregue una barra inclinada al final excepto .html y .aspx

La adición de una barra diagonal final a todas las direcciones URL a través del módulo de reescritura de URL de IIS está ampliamente difundida, pero ¿cómo puedoagregue excepciones para las URL que terminen con .html y .aspx?

Hoy tengo esto:

<rule name="Add trailing slash" stopProcessing="true">
  <match url="(.*[^/])$" />
  <conditions>
    <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
    <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
    <!-- Doesn't seem to be working -->
    <!--<add input="{REQUEST_URI}" pattern="(.*?).html$" negate="true" />-->
    <!--<add input="{REQUEST_URI}" pattern="(.*?).aspx$" negate="true" />-->
  </conditions>
  <action type="Redirect" redirectType="Permanent" url="{R:1}/" />
</rule>

Respuestas a la pregunta(5)

Su respuesta a la pregunta