public UpgradeViewContent(ISolution solution)
 {
     if (solution == null)
         throw new ArgumentNullException("solution");
     SetLocalizedTitle("${res:ICSharpCode.SharpDevelop.Project.UpgradeView.Title}");
     upgradeView = new UpgradeView(solution);
 }
		public UpgradeViewContent(Solution solution)
		{
			if (solution == null)
				throw new ArgumentNullException("solution");
			this.TitleName = "Project Upgrade";
			upgradeView = new UpgradeView(solution);
		}
Example #3
0
 public UpgradeViewContent(Solution solution)
 {
     if (solution == null)
     {
         throw new ArgumentNullException("solution");
     }
     SetLocalizedTitle("${res:ICSharpCode.SharpDevelop.Project.UpgradeView.Title}");
     upgradeView = new UpgradeView(solution);
 }