Microsoft.VisualStudio.Project.ConfigProvider.CreateProjectConfiguration C# (CSharp) Method

CreateProjectConfiguration() protected method

protected CreateProjectConfiguration ( string configName, string platform ) : ProjectConfig
configName string
platform string
return ProjectConfig
        protected virtual ProjectConfig CreateProjectConfiguration(string configName, string platform)
        {
            if (configName == null)
                throw new ArgumentNullException("configName");
            if (platform == null)
                throw new ArgumentNullException("platform");

            return new ProjectConfig(this._project, configName, platform);
        }