Display project version in ASP.NET MVC Core application (RC2)

前端 未结 5 615
生来不讨喜
生来不讨喜 2020-12-11 00:41

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\

5条回答
  •  半阙折子戏
    2020-12-11 01:11

    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.

提交回复
热议问题