Microsoft.VisualStudio.Project.ProjectNode.GetBoolAttr C# (CSharp) Method

GetBoolAttr() private method

private GetBoolAttr ( Microsoft.Build.Execution properties, string name ) : bool
properties Microsoft.Build.Execution
name string
return bool
        private bool GetBoolAttr(MSBuildExecution.ProjectInstance properties, string name)
        {
            this.currentConfig = properties;
            string s = GetProjectProperty(name);

            return (s != null && s.ToUpperInvariant().Trim() == "TRUE");
        }

Same methods

ProjectNode::GetBoolAttr ( string config, string name ) : bool
ProjectNode