Custom Adapter
Introduction
To speed up the development of new integrations, we have created a set of NuGet packages.
Currently the packages are:
At the moment the packages are not published on nuget.org but must be downloaded and installed manually
Local source for NuGet packages
To install a NuGet package locally, you need to identify a folder on your computer where you will download the various packages. This preliminary operation will only need to be done once.
Download the packages from the links provided on each page and place them in the chosen folder.
Open a terminal and run the command:
dotnet nuget add source <PACKAGE_SOURCE_PATH> --name <SOURCE_NAME>
Once this preliminary operation is complete, we will have registered the folder as a NuGet package source in addition to those already present (by default there is nuget.org).
Now we can install the packages in each project, remembering to specify which source to use with the -s parameter of the command:
dotnet add package <PACKAGE_NAME> -s <SOURCE_NAME>
From Visual Studio, you will need to select the new NuGet package source created earlier to install the package from the GUI.
Removing local source
To remove the local NuGet package source:
dotnet nuget remove source <SOURCE_NAME>