Nemerle.VisualStudio.Project.NemerleProjectNode.GetConfigurationDependentPropertyPages C# (CSharp) Method

GetConfigurationDependentPropertyPages() protected method

Returns the configuration dependent property pages. Specify here a property page. By returning no property page the configuartion dependent properties will be neglected. Overriding, but current implementation does nothing. To provide configuration specific page project property page, this should return an array bigger then 0 (you can make it do the same as GetConfigurationIndependentPropertyPages() to see its impact)
protected GetConfigurationDependentPropertyPages ( ) : System.Guid[]
return System.Guid[]
        protected override Guid[] GetConfigurationDependentPropertyPages()
        {
            return new Guid[]
            {
                typeof(NemerleBuildPropertyPage).GUID,
                typeof(NemerleDebugPropertyPage).GUID,
            };
        }