运行时读取 project.json 版本号

Read project.json version number at runtime

如何在运行时读取 project.json 版本号? IE。下面配置中的“1.0.0-1234”:

{
  "title": "MyProject.Api",
  "webroot": "wwwroot",
  "version": "1.0.0-1234",
  "dependencies": {
     ...
  },
  ...
}

您可以使用静态助手阅读它:

Microsoft.Extensions.PlatformAbstractions.PlatformServices.Default.Application.ApplicationVersion