Create and Publish Nuget Packages in Dotnet Core

Most of us use Nuget packages in our projects and we are familiar with the procedure of adding a Nuget package to a project.  Have you ever wondered on how to build one?  Let’s discuss in detail about how to create and publish Nuget Package.

Introduction to Nuget

Nuget is a free and open source package manager designed for Microsoft development platform.  It is a .NET alike of NPM packages.  A whole library can be encapsulated into a single package file which can be added to any project to provide access to the methods and classes that the libraries expose.  In summary, think of it like a DLL or a Class library project which can be added as a reference to any project and provide access to the methods it has.

Please check the following link for more details.  

https://www.blogofpi.com/create-and-publish-nuget-package-in-dotnet-core/

No Comments