~ubuntu-branches/ubuntu/lucid/monodevelop/lucid

« back to all changes in this revision

Viewing changes to src/core/MonoDevelop.Projects/MonoDevelop.Projects/SolutionConfiguration.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2010-01-10 14:25:59 UTC
  • mfrom: (1.2.5 upstream) (1.3.6 sid)
  • Revision ID: james.westby@ubuntu.com-20100110142559-sorji5exvk9tyknr
Tags: 2.2+dfsg-2
* debian/rules/remove_support_for_non_debian_functionality.patch:
  + Also fix monodevelop-core-addins.pc to remove links to the
    addins we remove in Debian

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
                {
60
60
                }
61
61
                
 
62
                public override ConfigurationSelector Selector {
 
63
                        get { return new SolutionConfigurationSelector (Id); }
 
64
                }
 
65
                
62
66
                public Solution ParentSolution {
63
67
                        get { return parentSolution; }
64
68
                        internal set { parentSolution = value; }
213
217
                        }
214
218
                }
215
219
                
 
220
                public ConfigurationSelector ItemConfigurationSelector {
 
221
                        get { return new ItemConfigurationSelector (ItemConfiguration); }
 
222
                }
 
223
                
216
224
                public bool Build {
217
225
                        get { return build; }
218
226
                        set { build = value; }