{% if file.dotnet %} {% if file.dotnet.typerefs or file.dotnet.assemblyrefs or file.dotnet.assemblyinfo or file.dotnet.customattrs %}

Assembly Information

{% if file.dotnet.assemblyinfo %} {% endif %}
Name {{file.dotnet.assemblyinfo.name}}
Version {{file.dotnet.assemblyinfo.version}}

{% endif %} {% if file.dotnet.assemblyrefs %}

Assembly References

{% for asm in file.dotnet.assemblyrefs %} {% endfor %}
Name Version
{{asm.name}} {{asm.version}}

{% endif %} {% if file.dotnet.customattrs %}

Custom Attributes

{% for attr in file.dotnet.customattrs %} {% endfor %}
Type Name Value
{{attr.type}} {{attr.name}} {{attr.value}}

{% endif %} {% if file.dotnet.typerefs %}

Type References

{% for typeref in file.dotnet.typerefs %} {% endfor %}
Assembly Type Name
{{typeref.assembly}} {{typeref.typename}}

{% endif %} {% else %} Nothing to display. {% endif %}