Please refer to Introduction to PnP Core Component for more details. I have created a console application and added SharePointPnPCoreOnlineNuGet package for the SharePoint 2016 version.
Code Snippet
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Net;
- using System.Text;
- using System.Threading.Tasks;
- using Microsoft.SharePoint.Client;
- using OfficeDevPnP.Core;
- namespace SP2016PnPCoreComponentDemo
- {
- class Program
- {
- static void Main(string[] args)
- {
- // Input Parameters
- string siteUrl = "http://c7395723754:35298/sites/VijaiDemo";
- string userName = "administrator";
- string password = "xxxxxxxx";
- string domain = "AD2012";
- OfficeDevPnP.Core.AuthenticationManager authMgr = new OfficeDevPnP.Core.AuthenticationManager();
- try
- {
- // Get the client context
- using (var ctx = authMgr.GetNetworkCredentialAuthenticatedContext(siteUrl, userName, password, domain))
- {
- // Create document library using CSOM Extension Method
- ctx.Web.CreateDocumentLibrary("PnP Documents Demo", true, "");
- }
- }
- catch (Exception ex)
- {
- Console.WriteLine("Error Message: " + ex.Message);
- }
- }
- }
- }

Join the conversation! Your thoughts help the community grow.