无法加载文件或程序集“Microsoft.Diagnostics.Tracing.EventSource”

rak*_*rai 8 c# asp.net-web-api

我在 Visual Studio 2015 中为 C 锐利项目工作。运行项目时,我在浏览器中收到以下错误

无法加载文件或程序集“Microsoft.Diagnostics.Tracing.EventSource,Version=1.1.24.0,Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a”或其依赖项之一。该系统找不到指定的文件。

任何人都可以为我提供解决方案

Igo*_*min 4

我有同样的问题,并注意到我的项目不使用Microsoft.Diagnostics.Tracing.EventSource,但使用Microsoft.Diagnostics.Tracing.EventSource.Redist,我刚刚将此参考更新到版本 1.1.28 并且它有效

<PackageReference Include="Microsoft.Diagnostics.Tracing.EventSource.Redist">
  <Version>1.1.28</Version>
</PackageReference>
Run Code Online (Sandbox Code Playgroud)