How to create nuget package from project: 1. Check properties from Directory.Build.props. Increase version 2. Check properties from project. Right click on project -> Properties -> Package 3. Select Release for build 4. Right click on project -> Pack 5. Search for package in bin/Release folder. Ex: NDB.Hosting.WindowsService.1.0.0.nupkg 6. Push the package 6.1 Open a console in package folder and run "dotnet nuget push -k -s " 6.2 Ex: dotnet nuget push NDB.Hosting.WindowsService.1.0.0.nupkg -k key -s http://stawebsrv/NuGetServer/nuget ####################################################################################################################################################### # Key: ***REMOVED*** # ####################################################################################################################################################### ####################################################################################################################################################### Push packages: dotnet nuget push NDB.Application.DataContracts.1.0.0.nupkg -k ***REMOVED*** -s http://stawebsrv:8081/NuGetServer/nuget dotnet nuget push NDB.Extensions.Swagger.1.0.2.nupkg -k ***REMOVED*** -s http://stawebsrv:8081/NuGetServer/nuget dotnet nuget push NDB.Extensions.Http.1.0.0.nupkg -k ***REMOVED*** -s http://stawebsrv:8081/NuGetServer/nuget dotnet nuget push NDB.Security.Authentication.Identity.1.0.3.nupkg -k ***REMOVED*** -s http://stawebsrv:8081/NuGetServer/nuget dotnet nuget push NDB.Extensions.Caching.1.0.0.nupkg -k ***REMOVED*** -s http://stawebsrv:8081/NuGetServer/nuget #######################################################################################################################################################