1

Any idea how to solve this. I tried updating nuget packages. But it did not solve the problem. TargetFramework is net6.0.

enter image description here

enter image description here

NeWi-SL
  • 127
  • 1
  • 6

1 Answers1

2

Error is very clear from the error message.

This package doesn't support .Net 6.

It supports only the .net framework, not the .net core. So you should not use it in .Net 6 target framework apps.

enter image description here

enter image description here

Microsoft.ApplicationInsights.Web also doesn't support .Net 6.

enter image description here

Vivek Nuna
  • 25,472
  • 25
  • 109
  • 197