I am developing a custom application with OpenTelemetry using ASP.NET Core. I am following the OpenTelemetry documentation. In my MVC project, I have added the following packages with their latest versions:
dotnet add package OpenTelemetry.Exporter.Consoledotnet add package OpenTelemetry.Extensions.Hosting
Next, I tried to add the package OpenTelemetry.Instrumentation.AspNetCore
using the command dotnet add package OpenTelemetry.Instrumentation.AspNetCore --prerelease
. However, I encountered an issue because the version of this package is not compatible with the versions of the previous two packages. While the first two packages have the same version, the third package does not have a compatible version.
I tried to find compatible version but I couldn't found