@@ -126,6 +126,7 @@ public override string Name {
126126
127127 IProject startupProject ;
128128
129+ [ Browsable ( false ) ]
129130 public IProject StartupProject {
130131 get {
131132 if ( startupProject == null ) {
@@ -231,6 +232,7 @@ internal void ReportAddedItem(ISolutionItem newItem)
231232 }
232233 #endregion
233234
235+ [ Browsable ( false ) ]
234236 public IEnumerable < ISolutionItem > AllItems {
235237 get {
236238 return this . Items . Flatten ( i => i is ISolutionFolder ? ( ( ISolutionFolder ) i ) . Items : null ) ;
@@ -274,12 +276,14 @@ public ISolutionItem GetItemByGuid(Guid guid)
274276 #region Preferences
275277 Properties preferences = new Properties ( ) ;
276278
279+ [ Browsable ( false ) ]
277280 public Properties Preferences {
278281 get { return preferences ; }
279282 }
280283
281284 Properties globalPreferences = new Properties ( ) ;
282285
286+ [ Browsable ( false ) ]
283287 public Properties GlobalPreferences {
284288 get { return globalPreferences ; }
285289 }
@@ -369,6 +373,7 @@ SolutionFormatVersion ComputeSolutionVersion()
369373 #region MSBuildProjectCollection
370374 readonly Microsoft . Build . Evaluation . ProjectCollection msBuildProjectCollection = new Microsoft . Build . Evaluation . ProjectCollection ( ) ;
371375
376+ [ Browsable ( false ) ]
372377 public Microsoft . Build . Evaluation . ProjectCollection MSBuildProjectCollection {
373378 get { return msBuildProjectCollection ; }
374379 }
@@ -467,7 +472,9 @@ public ConfigurationAndPlatform ActiveConfiguration {
467472
468473 public event EventHandler ActiveConfigurationChanged = delegate { } ;
469474
475+ [ Browsable ( false ) ]
470476 public IConfigurationOrPlatformNameCollection ConfigurationNames { get ; private set ; }
477+ [ Browsable ( false ) ]
471478 public IConfigurationOrPlatformNameCollection PlatformNames { get ; private set ; }
472479
473480 void CreateDefaultConfigurationsIfMissing ( )
@@ -498,6 +505,7 @@ void ValidateConfiguration()
498505
499506 bool isDirty ;
500507
508+ [ Browsable ( false ) ]
501509 public bool IsDirty {
502510 get { return isDirty ; }
503511 set {
0 commit comments