Skip to content

3.0.0

Latest
Compare
Choose a tag to compare
@raja-7453 raja-7453 released this 03 Dec 05:53
cf17ccd

3.0.0

  • Handle "text/plain" content type as a file download.

For more details, kindly refer to here.

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

- Package Manager

    ```sh
    Install-Package ZOHOCRMSDK-7.0 -Version 3.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-7.0 --version 3.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 the package.

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