Reputation: 137
Recently we have started a c# project using .Net 6.0. My team intended to use the Microsoft.PowerPlatform.Dataverse.Client sdk to connect to dynamics 365 crm for our development. However, when we hit the error as shown in image 1 below. May i know is it the SDK does not support .Net 6.0 yet?
Upvotes: 2
Views: 3234
Reputation: 137
I have found the answer. Do not install the Microsoft.CrmSdk.CoreAssemblies
library. That will resolve the issue.
Upvotes: 10
Reputation: 625
The Dynamics 365
support .NET 4.6.2 in general
take a look here Starting with the Dynamics 365 for Customer Engagement apps version 9.0
In the NuGet page, can know that it is support net462, net472, net48, netcore3.1
BUT I will recommend you use the .Net framework 4.6.2
in your application. To prevent unpredictable problem
Upvotes: 0