ASP.Net HttpModule / ErrorHandler - 如何获取执行程序集版本

发布于 2024-11-15 20:58:46 字数 336 浏览 1 评论 0原文

我有一个 Http 模块,可以处理 ASP.Net 应用程序的所有错误。

作为其中的一部分,它交给“MyApp.Logging”程序集,它是 NLog 的外观。

在这里,我想获取首先导致错误的 web 应用程序的版本号。

我已经尝试过这段代码,它在控制台应用程序中运行良好...

version = System.Reflection.Assembly.GetEntryAssembly().GetName().Version.ToString();

有什么想法如何让它在 Web 应用程序的上下文中运行吗?

I have a Http module that handles all of the errors for my ASP.Net application.

As part of this it hands of to the "MyApp.Logging" assembly which is a facade to NLog.

In here I want to get the version number of the web applciation that caused the error in the first place.

I have tried this code which works fine in a console application...

version = System.Reflection.Assembly.GetEntryAssembly().GetName().Version.ToString();

Any ideas how to get this working in the context of a web application?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梅倚清风 2024-11-22 20:58:46

这应该有效:

typeof(SomeTypeFromYourWebApplication).Assembly.GetName().Version.ToString()

This should work:

typeof(SomeTypeFromYourWebApplication).Assembly.GetName().Version.ToString()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文