How to show the build version?

2

I see in some pages and systems the build version.

I would like to show in a view the build version of my project in ASP.Net MVC

    
asked by anonymous 31.12.2014 / 19:25

1 answer

2

I think this is all you want:

@typeof(SeuNamespace.MvcApplication).Assembly.GetName().Version
    
31.12.2014 / 19:47