~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
                                Console.WriteLine ("-p --project:PROJECT  Name of the project to build.");
58
58
                                Console.WriteLine ("-t --target:TARGET    Name of the target: Build or Clean.");
59
59
                                Console.WriteLine ("-c --configuration:CONFIGURATION  Name of the solution configuration to build.");
60
 
                                Console.WriteLine ("-r --runtime:PREFIX  Prefix of the Mono runtime to build against.");
 
60
                                Console.WriteLine ("-r --runtime:PREFIX   Prefix of the Mono runtime to build against.");
61
61
                                Console.WriteLine ();
62
62
                                Console.WriteLine ("Supported targets:");
63
63
                                Console.WriteLine ("  {0}: build the project (the default target).", ProjectService.BuildTarget);
142
142
                                MonoTargetRuntimeFactory.UnregisterRuntime((MonoTargetRuntime) targetRuntime);
143
143
                        }
144
144
 
 
145
                        foreach (var err in res.Errors) {
 
146
                                Console.Error.WriteLine (err);
 
147
                        }
 
148
 
145
149
                        return (res == null || res.ErrorCount == 0) ? 0 : 1;
146
150
                }
147
151