コード例 #1
0
ファイル: Program.cs プロジェクト: Br3nda/SPDevDeploy
        private static void CreateSiteStructure(ClientContext context)
        {
            //Iterate through an XML file of the site structure and create as follows...
            Deploy deploy = new Deploy();

            deploy.CreateSite(context, "MytestSite", "MyNamedTestSite", "Some random description");
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: zeroyxz/SPDevDeploy
 private static void CreateSiteStructure(ClientContext context)
 {
     //Iterate through an XML file of the site structure and create as follows...
     Deploy deploy = new Deploy();
     deploy.CreateSite(context, "MytestSite", "MyNamedTestSite", "Some random description");
 }