Unity 構成ファイルにジェネリック型を登録しました。動作しますが、ReSharper はこの構文を INCORRECT_TYPE_PARAMETER_NUMBER エラーとして赤色でフラグ付けします。構成ファイルにオーバーヘッドを追加することなく、ReSharper を満足させる方法はありますか?
<unity>
<type alias="IList`1" type="System.Collections.Generic.IList`1, mscorlib"/>
^^^^^^^
<type alias="List`1" type="System.Collections.Generic.List`1, mscorlib"/>
^^^^^^
<type alias="string" type="System.String, mscorlib"/>
<type alias="int" type="System.Int32, mscorlib"/>
<register type="IList`1[string]" mapTo="List`1[string], mscorlib"/>
<register type="IList`1[int]" mapTo="List`1[int], mscorlib"/>
</unity>