Nemerle.VisualStudio.Project.NemerleProjectNode.GetConfigurationDependentPropertyPages C# (CSharp) 메소드

GetConfigurationDependentPropertyPages() 보호된 메소드

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[]
리턴 System.Guid[]
        protected override Guid[] GetConfigurationDependentPropertyPages()
        {
            return new Guid[]
            {
                typeof(NemerleBuildPropertyPage).GUID,
                typeof(NemerleDebugPropertyPage).GUID,
            };
        }