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

« back to all changes in this revision

Viewing changes to src/core/MonoDevelop.Ide/MonoDevelop.Ide.Projects/PackageReferencePanel.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:
155
155
                                }
156
156
                                string pkg = systemAssembly.Package.GetDisplayName ();
157
157
                                if (systemAssembly.Package.IsInternalPackage)
158
 
                                        pkg += " " + GettextCatalog.GetString ("(Provided by MonoDevelop)");
 
158
                                        pkg += " " + GettextCatalog.GetString ("(Provided by {0})", BrandingService.ApplicationName);
159
159
                                
160
160
                                store.AppendValues (name, 
161
161
                                        version, 
197
197
                                        if (netProject != null) {
198
198
                                                if (ProjectReferencePanel.ProjectReferencesProject (references, null, netProject, configureProject.Name))
199
199
                                                        continue;
200
 
                                            else if (!configureProject.TargetFramework.IsCompatibleWithFramework (netProject.TargetFramework.Id))
 
200
 
 
201
                                                string reason;
 
202
                                            if (!configureProject.CanReferenceProject (netProject, out reason))
201
203
                                                        continue;
202
204
                                        }
203
205
                                        store.AppendValues (name, "", null, selected, projectEntry.Name, "", projectEntry.StockIcon, matchRank, ReferenceType.Project);