You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.1 KiB
36 lines
1.1 KiB
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) |
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt) |
|
|
|
using System; |
|
|
|
namespace ICSharpCode.SharpDevelop.Project |
|
{ |
|
/// <summary> |
|
/// The <code>IProjectBinding</code> interface is the base interface |
|
/// of all project bindings avaiable. |
|
/// </summary> |
|
public interface IProjectBinding |
|
{ |
|
/// <returns> |
|
/// The language for this project binding. |
|
/// </returns> |
|
string Language { |
|
get; |
|
} |
|
|
|
IProject LoadProject(ProjectLoadInformation info); |
|
|
|
/// <summary> |
|
/// Creates a IProject out of the given ProjetCreateInformation object. |
|
/// Each project binding must provide a representation of the project |
|
/// it 'controls'. |
|
/// </summary> |
|
IProject CreateProject(ProjectCreateInformation info); |
|
|
|
/// <summary> |
|
/// Determines whether this ProjectBinding handling missing project file |
|
/// itself or it relies on the default logic of creating MissingProject project |
|
/// </summary> |
|
bool HandlingMissingProject { get; } |
|
} |
|
}
|
|
|