How do I display application version from the project.json?
I am using gulp-bump to autoincrement version, but I can\'t show the recent version. Here is what I\
As per this announcement, IApplicationEnvironment no longer exists.
You can still access the ApplicationVersion statically using:
Microsoft.Extensions.PlatformAbstractions.PlatformServices.Default.Application.ApplicationVersion
It works for me. My project.json looks like this:
{
"version": "1.0.0.2",
// all the rest
}
And in my index view, I have the following line at the top:
@Microsoft.Extensions.PlatformAbstractions.PlatformServices.Default.Application.ApplicationVersion
And I correctly get 1.0.0.2 in the output. And when I change that value and restart (build) the application, the new version is shown there.