Click or drag to resize
How To Install YALLA.NET

[This is preliminary documentation and is subject to change.]

In order for YALLA.NET to produce log(s) in an application/service, the primary YALLA.NET library must be added as a dependency to the main project.

  • Enter the following command into the Package Manager Console:

    Install-Package Yalla

    If the solution contains multiple projects, the command above should be followed by the project name.

    Alternatively, you may use the Manage NuGet Packages window. If you do, make sure that the package ID is Yalla.

    Note Note
    The YALLA.NET Core library is the only dependency required for logging in a library, including Class Libraries in an application/service. If you install the primary YALLA.NET library, the YALLA.NET Core library will be installed automatically.
    Caution note Caution

    If the target framework of the project is .NET Framework 4, two other packages will be added as dependencies:

    • Microsoft.Bcl.Build
    • Microsoft.Bcl

    These packages are required in order for YALLA.NET to consume compiler-generated caller information in the legacy framework. Consider reducing dependencies by updating the project to target .NET Framework 4.5 or higher.

See Also