~ubuntu-branches/ubuntu/saucy/monodevelop/saucy-proposed

« back to all changes in this revision

Viewing changes to src/core/MonoDevelop.Projects.Formats.MSBuild/MonoDevelop.Projects.Formats.MSBuild/ProjectBuilder.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2012-02-05 10:49:36 UTC
  • mto: (10.3.1)
  • mto: This revision was merged to the branch mainline in revision 25.
  • Revision ID: package-import@ubuntu.com-20120205104936-4ujoylapu24cquuo
Tags: upstream-2.8.6.3+dfsg
ImportĀ upstreamĀ versionĀ 2.8.6.3+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
                        RunSTA (delegate
58
58
                        {
59
59
                                engine = new Engine (binDir);
60
 
                                engine.GlobalProperties.SetProperty ("BuildingInsideVisualStudio", "true");
 
60
                                engine.GlobalProperties.SetProperty ("BuildingInsideVisualStudio", "true");
 
61
                                
 
62
                                //we don't have host compilers in MD, and this is set to true by some of the MS targets
 
63
                                //which causes it to always run the CoreCompile task if BuildingInsideVisualStudio is also
 
64
                                //true, because the VS in-process compiler would take care of the deps tracking
 
65
                                engine.GlobalProperties.SetProperty ("UseHostCompilerIfAvailable", "false");
61
66
 
62
67
                                consoleLogger = new MDConsoleLogger (LoggerVerbosity.Normal, LogWriteLine, null, null);
63
68
                                engine.RegisterLogger (consoleLogger);