You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
429 B
10 lines
429 B
10 years ago
|
<%@ Page Language="C#" %>
|
||
|
{{#versionTypeName}}
|
||
|
<% var assembly = typeof({{versionTypeName}}).Assembly; %>
|
||
|
<% var attribute = (System.Reflection.AssemblyInformationalVersionAttribute)assembly.GetCustomAttributes(typeof(System.Reflection.AssemblyInformationalVersionAttribute), false).Single(); %>
|
||
|
<%= attribute.InformationalVersion %>
|
||
|
{{/versionTypeName}}
|
||
|
{{^versionTypeName}}
|
||
|
Version information unavailable
|
||
|
{{/versionTypeName}}
|