A NuGet package is a package of source, scripts, binaries, etc., plus metadata for use in Visual Studio.  The best way to think about a NuGet package is to think about it in terms you might already be familiar with: basically a zip or tar ball plus metadata.  The NuGet Package Explorer is a GUI tool which packages source, binaries, scripts, etc., plus metadata into a single file (a package) which is published to a server.  Developers can go to the server and pull your package into their Visual Studio project.     If you are more command-line inclined, then go to this link:   https://docs.nuget.org/create/Creating-and-Publishing-a-Package   You can download the NuGet Package Explorer GUI and read about it at this link:   https://docs.nuget.org/Create/using-a-gui-to-build-packages     The following are some helpful topics for using the NuGet Package Explorer.     To create a package:   1. You will most likely be publishing packages to some internal repository,   http:...