Galil .NET Wrapper for gclib

Note that the wrapper requires the C Library to be installed.

Quickstart

The wrapper targets .NET Standard 2.0, which is expected to work on most .NET implementations.

> robocopy "%GCLIB_ROOT%\examples\cs" cs
> cd cs
> dotnet run
gclib version is 2.5.0
Hello World!
Direct install These instructions are modified to download the .nupkg directly from Galil, rather than using the NuGet package.
> robocopy /e "%GCLIB_ROOT%\examples\cs" cs
> cd cs
> dotnet nuget add source %cd% --name gclib
> curl -O https://www.galil.com/sw/pub/dotnet/Galil.Gclib.2.0.0.nupkg
> dotnet run
gclib version is 2.5.0
Hello World!