Microsoft.WindowsAzure.Commands.Utilities.CloudService.CloudServiceProject.CloudServiceProject C# (CSharp) Method

CloudServiceProject() public method

public CloudServiceProject ( string rootPath, string scaffoldingPath ) : Common.System
rootPath string
scaffoldingPath string
return Common.System
        public CloudServiceProject(string rootPath, string scaffoldingPath)
        {
            SetScaffolding(scaffoldingPath);

            if (!VisualStudioProjectPathInfo.IsVisualStudioProject(rootPath))
            {
                Paths = new PowerShellProjectPathInfo(rootPath);
            }
            else
            {
                Paths = new VisualStudioProjectPathInfo(rootPath);
            }

            Components = new ServiceComponents(Paths);
        }

Same methods

CloudServiceProject::CloudServiceProject ( ) : Common.System
CloudServiceProject::CloudServiceProject ( string cloudConfigurationFullPath ) : Common.System
CloudServiceProject::CloudServiceProject ( string rootPath, string name, string scaffoldingPath ) : Common.System