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

« back to all changes in this revision

Viewing changes to src/addins/CBinding/Project/CProject.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:
202
202
                
203
203
                public override IEnumerable<SolutionItem> GetReferencedItems (ConfigurationSelector configuration)
204
204
                {
 
205
                        foreach (var p in base.GetReferencedItems (configuration))
 
206
                                yield return p;
 
207
 
205
208
                        List<string> project_names = new List<string> ();
206
209
                        
207
210
                        foreach (Package p in Packages) {
362
365
                                
363
366
                                monitor.Log.WriteLine ("The operation exited with code: {0}", op.ExitCode);
364
367
                        } catch (Exception ex) {
 
368
                                LoggingService.LogError (string.Format ("Cannot execute \"{0}\"", conf.Output), ex);
365
369
                                monitor.ReportError ("Cannot execute \"" + conf.Output + "\"", ex);
366
370
                        } finally {                     
367
371
                                operationMonitor.Dispose ();