Can I create a Web API to connect to Microsoft Dynamics 365 2016 on prem using .NET Core 6.0?
I attempted to accomplish this using .NET Framework 4.7 and it was successful, however it doesn't work in .NET Core 6.0.
In .NET Core 6.0, when I try to install the necessary packages like Microsoft.CrmSdk.CoreAssemblies, Microsoft.Xrm.Sdk,Microsoft.Xrm.Client, an error appears indicating that these packages are compatible with .NET Framework 4.6, 4.7, 4.8.
How can I resolve this problem to create Web API using .NET Core 6.0?