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.
39 lines
874 B
39 lines
874 B
// <file> |
|
// <copyright see="prj:///doc/copyright.txt"/> |
|
// <license see="prj:///doc/license.txt"/> |
|
// <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/> |
|
// <version>$Revision$</version> |
|
// </file> |
|
|
|
using System; |
|
using System.Xml; |
|
using ICSharpCode.SharpDevelop.Internal.Templates; |
|
using ICSharpCode.SharpDevelop.Project; |
|
|
|
namespace ICSharpCode.ILAsmBinding |
|
{ |
|
public class ILAsmProjectBinding : IProjectBinding |
|
{ |
|
public const string LanguageName = "ILAsm"; |
|
|
|
public string Language { |
|
get { |
|
return LanguageName; |
|
} |
|
} |
|
|
|
public IProject LoadProject(ProjectLoadInformation loadInformation) |
|
{ |
|
return new ILAsmProject(loadInformation); |
|
} |
|
|
|
public IProject CreateProject(ProjectCreateInformation info) |
|
{ |
|
return new ILAsmProject(info); |
|
} |
|
|
|
public bool HandlingMissingProject { |
|
get { return false; } |
|
} |
|
} |
|
}
|
|
|