knowledgecenter-breadcrum

Category

Category : C#

How to Integrate Third-Party Libraries into Dataverse Plugins

Introduction  Integrating third-party libraries into Dataverse plugins used to be difficult and often required unsupported methods like ILMerge. Now, with Plugin Packages, you can easily add any libraries available on NuGet directly into your Dataverse plugins. In this blog, we will see how we can add external library Newtonsoft.Json in…

Streamlining solution deployment in Power Platform/Dynamics 365 CRM using Package Deployer Tool

Gone are the days of manually importing solutions one by one into the Dataverse environment. Package Deployer lets administrators deploy packages on Microsoft Dataverse instances. A Package Deployer package can consist of any or all of the following: One or more Dataverse solution files. Flat files or exported configuration data…

Create SharePoint list items with attachments in bulk using the Console app in C#.

Introduction : In this blog we will understand Bulk Creation of SharePoint List Items with Attachments using C# Console App Steps: Step 1: Create console app in VS Studio as shown below. Step 2: Declare variables that takes input from the user and store inputs received in declared variables. Step3:…

Serialization/Deserialization of JSON objects using Newtonsoft.Json in C#

Serialization/Deserialization of JSON objects using Newtonsoft.Json in C# JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. JSON is a text format that is completely language independent but uses conventions that are…