Reconfiguração de URL do IIS: Adicione uma barra à direita, exceto para .html e .aspx

Adicionando uma barra à direita para todos os URLs através do IIS URL Rewrite Module é amplamente difundido, mas como faço paraadicione exceções para URLs que terminem com .html e .aspx?

Hoje tenho isto:

<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>

questionAnswers(5)

yourAnswerToTheQuestion