Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Ward <matt.ward@xamarin.com>2016-08-09 22:29:04 +0300
committerMatt Ward <matt.ward@xamarin.com>2016-08-10 12:43:55 +0300
commit68fdf29a7a6150ef3c2db0f0cc4afdf515debebb (patch)
tree78c6f9b486f3ef3937476d0f166e7f339db6a442 /main/src/core/MonoDevelop.Ide/AssemblyInfo.cs
parent6a884dc99f60c8a4f8a8f736cff3113f8b9cbeba (diff)
[Packaging] Add basic project template wizard for .nuproj projects
Added a simple project template wizard that allows the package id, version, authors and description to be specified. The wizard page needs an image on the right hand side, there is nothing displayed currently. There is no validation of the data entered apart from checking it exists. Currently using a TextView for the description to allow multi-lines to be specified which prevents the enter/return key from moving to the next page of the dialog when the TextView has focus. Had to add the packaging project to the MonoDevelop.Ide project's InternalsVisibleTo. Without this the build was failing to find the GTK# designers BinContainer class even though it is in the project's generated.cs file.
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/AssemblyInfo.cs')
-rw-r--r--main/src/core/MonoDevelop.Ide/AssemblyInfo.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/main/src/core/MonoDevelop.Ide/AssemblyInfo.cs b/main/src/core/MonoDevelop.Ide/AssemblyInfo.cs
index a613fe3ee2..bad40c814f 100644
--- a/main/src/core/MonoDevelop.Ide/AssemblyInfo.cs
+++ b/main/src/core/MonoDevelop.Ide/AssemblyInfo.cs
@@ -32,4 +32,5 @@ using System.Runtime.CompilerServices;
[assembly: InternalsVisibleTo("MonoDevelop.GtkCore")]
[assembly: InternalsVisibleTo("MonoDevelop.PackageManagement")]
[assembly: InternalsVisibleTo("Xamarin.Forms.Addin.Tests")]
+[assembly: InternalsVisibleTo("MonoDevelop.Packaging")]
[assembly: InternalsVisibleTo("MonoDevelop.Packaging.Tests")]