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

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2009-02-18 08:40:51 UTC
  • mfrom: (1.2.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090218084051-gh8m6ukvokbwj7cf
Tags: 1.9.2+dfsg-1ubuntu1
* Merge from Debian Experimental (LP: #330519), remaining Ubuntu changes:
  + debian/control:
    - Update for Gnome# 2.24
    - Add libmono-cairo1.0-cil to build-deps to fool pkg-config check

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
using MonoDevelop.Projects;
27
27
using MonoDevelop.Core;
28
 
using MonoDevelop.Projects.Parser;
29
28
using MonoDevelop.Projects.CodeGeneration;
30
29
 
31
30
namespace MonoDevelop.Projects
36
35
        /// </summary>
37
36
        public interface IDotNetLanguageBinding: ILanguageBinding
38
37
        {
39
 
                ICompilerResult Compile (ProjectFileCollection projectFiles, ProjectReferenceCollection references, DotNetProjectConfiguration configuration, IProgressMonitor monitor);
 
38
                BuildResult Compile (ProjectFileCollection projectFiles, ProjectReferenceCollection references, DotNetProjectConfiguration configuration, IProgressMonitor monitor);
40
39
                
41
40
                ICloneable CreateCompilationParameters (XmlElement projectOptions);
42
41