
================================
 eBUSDotNet C# samples on linux
================================

Prerequisites

    These samples assumes that:
        1. You have .NET 8 or higher for linux installed 
            a. You can check your dotnet version using the command "dotnet --version" in the terminal
            b. If .NET is not installed, it can be installed by following the instructions found here: 
                Ubuntu: https://learn.microsoft.com/en-us/dotnet/core/install/linux-ubuntu-install
                RHEL/CentOS Stream: https://learn.microsoft.com/en-us/dotnet/core/install/linux-rhel#supported-distributions
        2. The bin/set_puregev_env.sh has been sourced to define the configuration / location of the SDK.


Compiling and Running a Sample

    1. Navigate to the folder of the desired sample.
    2. In the terminal, use the command "dotnet run" to build and launch the sample in Debug.
        a. To build and launch the sample is Release, use the command "dotnet run --configuration Release".
        b. If additional arguments are needed, simply add them at the end of the command.
            dotnet run <arguments>
