Base on Stafford Williams answer in How can I auto-increment an ASP.NET Core MVC version number?
To display the version he us :
@inject Microsoft.Extensions.PlatformAbstractions.IApplicationEnvironment appEnv
My version number is @(appEnv.ApplicationVersion)
but in RTM theres no
Microsoft.Extensions.PlatformAbstractions.IApplicationEnvironment
how to do this in RTM ? How to Display the project version in view ?