Skip to content

6.0.0

Latest
Compare
Choose a tag to compare
@raja-7453 raja-7453 released this 30 May 07:17
3ad3838

6.0.0

  • Blueprint Transition percentPartialSave field datatype changed(int to double).
  • Blueprint Field convertMapping field datatype changed(ConvertMapping to Dictionary).

For more details, kindly refer to here.

C# SDK is available as a Nuget package. The ZOHOCRMSDK-6.0 assembly can be installed through the NuGet Package Manager or through the following options:

- Package Manager

    ```sh
    Install-Package ZOHOCRMSDK-6.0 -Version 6.0.0
    Install-Package MySql.Data -Version 6.9.12
    Install-Package Newtonsoft.Json -Version 13.0.1
    ```

- .NET  CLI

    ```sh
    dotnet add package ZOHOCRMSDK-6.0 --version 6.0.0
    dotnet add package Newtonsoft.Json --version 13.0.1
    dotnet add package MySql.Data --version 6.9.12
    ```

- PackageReference

    For projects that support PackageReference, copy this XML node into the project file to refer to the package.

    ```sh
    <ItemGroup>
        <PackageReference Include="ZOHOCRMSDK-6.0" Version="6.0.0" />
        <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
        <PackageReference Include="MySql.Data" Version="6.9.12" />
    </ItemGroup>
    ```