无法加载类型“Microsoft.ApplicationInsights.Telemetry.Web.Applicati
本文关键字:ApplicationInsights Telemetry Web Applicati Microsoft 加载 类型 | 更新日期: 2023-09-27 18:34:58
我有一个使用C#.Net开发的Azure服务。当我编译解决方案时,它没有任何错误。
但是当我运行它时,它会抛出以下错误:
无法加载类型"Microsoft.应用程序见解.遥测.Web.应用程序见解模块">
以下是它指向我运行解决方案时的部分。
<system.web>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" relaxedUrlToFileSystemMapping="true" />
<customErrors mode="Off" defaultRedirect="/Error/Error.html" />
<pages controlRenderingCompatibilityVersion="4.5" />
<httpModules>
<add name="ApplicationInsights" type="Microsoft.ApplicationInsights.Telemetry.Web.ApplicationInsightsModule" />
</httpModules>
</system.web>
确保已安装应用程序见解 API nuget 包
- 在 Visual Studio 解决方案资源管理器中打开项目的上下文菜单。
- 选择"管理 NuGet 包"。
- 查看在线软件包并搜索"应用程序见解"。包括引号。
- 选择适用于服务的应用程序见解遥测 SDK。
我遇到了同样的问题。通过重新安装 Microsoft.ApplicationInsights nuget 包来修复此问题。