Installing #SNMP Library¶
By Lex Li
This page shows you how to install #SNMP Library to your project on Windows. The usage on other platforms (macOS and Linux) should be quite similar.
Install #SNMP Library via NuGet¶
The easiest way to get started building applications with #SNMP Library is to install via NuGet in the latest version of Visual Studio 2015 (including the free Community edition).
Install Visual Studio 2015.
Be sure to specify that you include the Windows and Web Development.
Install latest NuGet Package Manager.
This will install the latest NuGet tooling.
Open/create an empty Windows Forms project.
Install #SNMP Library NuGet packages following NuGet conventions.
The latest package can be found at,
Platform Extensions (Required by release 10.0.0. Not required by release 10.0.1 and above.)
DES/AES Privacy Providers via Bouncy Castle (Required by platforms without native DES/AES support, like .NET Core/UWP. Obsolete in 11.0.0 and above).
Note
In 10.0.0 release, the platform extensions package is required for .NET Framework, Xamarin.iOS, and Xamarin.Android applications so as to use DES/AES encryption. This package is no longer needed in release 10.0.1 and above.
Note
In 10.0.9 release, AES privacy providers based on Bouncy Castle are shipped in a new package for .NET Core/UWP scenarios. As Bouncy Castle AES algorithms are slower than native AES in general, if you are targeting a platform with native AES support, such as .NET Framework/Mono/Xamarin, this package should not be used.
Note
DES privacy provider based on Bouncy Castle would be available in 10.0.10 release.
Note
Starting from 11.0.0 release, Lextm.SharpSnmpLib.BouncyCastle
package is obsolete, and no longer published. You can compile your own copy
using the source code from
the samples .
Install #SNMP Library via source code¶
#SNMP Library source code can be directly used in your project.
Download the source code from GitHub, or clone the repo directly.
Run
prepare.bat
on Windows (orprepare.sh
on non-Windows platforms) to prepare the code base for compilation.Note
This step is no longer needed in release 10.0.10 and above.
Open/create a empty Windows Forms project in a solution.
Add SharpSnmpLib.csproj (release 10.0 and above), and SharpSnmpLib.Full.csproj (10.0.0) in
SharpSnmpLib
directory to your solution.
Note
SharpSnmpLib.Android.csproj and SharpSnmpLib.iOS.csproj might be used to target Xamarin platforms for release 10.0.0. They are no longer needed for 10.0.1 release and above.
Note
Other projects (SharpSnmpLib.BouncyCastle.csproj
) are optional.
Sample projects for #SNMP Library are available in their own repo .