{% if analysis.static and analysis.static.dotnet %} {% if analysis.static.dotnet.typerefs or analysis.static.dotnet.assemblyrefs or analysis.static.dotnet.assemblyinfo or analysis.static.dotnet.customattrs %}

Assembly Information

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

{% endif %} {% if analysis.static.dotnet.assemblyrefs %}

Assembly References

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

{% endif %} {% if analysis.static.dotnet.customattrs %}

Custom Attributes

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

{% endif %} {% if analysis.static.dotnet.typerefs %}

Type References

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

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