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

GetPropertiesConditionedOn() protected method

Get all the configurations in the project.
protected GetPropertiesConditionedOn ( string constant ) : string[]
constant string
return string[]
        protected virtual string[] GetPropertiesConditionedOn(string constant)
        {
            List<string> configurations = null;
            this._project.BuildProject.ReevaluateIfNecessary();
            this._project.BuildProject.ConditionedProperties.TryGetValue(constant, out configurations);

            return (configurations == null) ? new string[] { } : configurations.ToArray();
        }