Skip to content

4.0.0

Latest
Compare
Choose a tag to compare
@raja-7453 raja-7453 released this 08 Mar 13:19
· 2 commits to master since this release
e2279da

4.0.0

  • Changed tabTraversal field datatype in Layouts Sections.

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 4.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 4.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="4.0.0" />
        <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
        <PackageReference Include="MySql.Data" Version="6.9.12" />
    </ItemGroup>
    ```