-2

是否可以从.csproj文件中获取数据以传递给 .NET 应用程序中的自定义运行状况检查?

我目前endpoints.MapCustomHealthChecks("ApplicationName", "ApplicationVersion");在我的Program.cs. 它工作正常,只是我需要在更改版本时进行代码更新。但是,这两个参数都在我的.csproj文件中,所以我想知道是否可以使用这些参数。

4

1 回答 1

0
var publisherName = Assembly.GetEntryAssembly().GetName().Name;
var publisherVersion = Assembly.GetEntryAssembly().GetName().Version.ToString();
endpoints.MapCustomHealthChecks(publisherName, publisherVersion);
于 2020-12-07T07:37:11.927 回答