~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric

« back to all changes in this revision

Viewing changes to src/core/MonoDevelop.Core/MonoDevelop.Projects/ConfigurationSelector.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2011-06-27 17:03:13 UTC
  • mto: (1.8.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 54.
  • Revision ID: james.westby@ubuntu.com-20110627170313-6cvz3s19x6e9hqe9
ImportĀ upstreamĀ versionĀ 2.5.92+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
namespace MonoDevelop.Projects
29
29
{
 
30
        /// <summary>
 
31
        /// Specifies a configuration to be used for solution and project operations
 
32
        /// </summary>
30
33
        public class ConfigurationSelector
31
34
        {
 
35
                /// <summary>
 
36
                /// A configuration selector which selects the default (active) project or solution configuration
 
37
                /// </summary>
32
38
                public static readonly ConfigurationSelector Default = new DefaultConfigurationSelector ();
33
39
                
 
40
                /// <summary>
 
41
                /// Gets the configuration selected by this instance for a given target
 
42
                /// </summary>
 
43
                /// <returns>
 
44
                /// The configuration.
 
45
                /// </returns>
 
46
                /// <param name='target'>
 
47
                /// A target
 
48
                /// </param>
34
49
                public virtual ItemConfiguration GetConfiguration (IConfigurationTarget target)
35
50
                {
36
51
                        return null;