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:
authorJeffrey Stedfast <jeff@xamarin.com>2012-01-24 23:34:50 +0400
committerJeffrey Stedfast <jeff@xamarin.com>2012-01-24 23:34:50 +0400
commitfe0bd30ad00a7f66f64751ff82474ba1c85bbff2 (patch)
tree88561f142f37b66c4038e18ac57972ea82e21678 /main/src/core/MonoDevelop.Ide/Makefile.am
parent453409507a70a9eb6c3d51fd6363b8eb5776dc6d (diff)
[Ide] Exporting Projects doesn't make sense, only export Solutions
Exporting Projects can't reliably work because it may reference other projects. This was the cause of the crash in bug #2979. I modified the code to walk up to the parent Solution when a user tries to export a project, and then export the entire solution. This was also the behavior that mhutch had expected when he tried to export a project.
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/Makefile.am')
-rw-r--r--main/src/core/MonoDevelop.Ide/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/core/MonoDevelop.Ide/Makefile.am b/main/src/core/MonoDevelop.Ide/Makefile.am
index 0c870ae245..dbe6cbe0f1 100644
--- a/main/src/core/MonoDevelop.Ide/Makefile.am
+++ b/main/src/core/MonoDevelop.Ide/Makefile.am
@@ -72,8 +72,8 @@ FILES = \
gtk-gui/MonoDevelop.Ide.Projects.CombineEntryFeatureSelector.cs \
gtk-gui/MonoDevelop.Ide.Projects.ConfirmProjectDeleteDialog.cs \
gtk-gui/MonoDevelop.Ide.Projects.DeleteConfigDialog.cs \
- gtk-gui/MonoDevelop.Ide.Projects.ExportProjectDialog.cs \
gtk-gui/MonoDevelop.Ide.Projects.ExportProjectPolicyDialog.cs \
+ gtk-gui/MonoDevelop.Ide.Projects.ExportSolutionDialog.cs \
gtk-gui/MonoDevelop.Ide.Projects.FeatureSelectorDialog.cs \
gtk-gui/MonoDevelop.Ide.Projects.ImportProjectPolicyDialog.cs \
gtk-gui/MonoDevelop.Ide.Projects.IncludeNewFilesDialog.cs \
@@ -622,8 +622,8 @@ FILES = \
MonoDevelop.Ide.Projects/ConfirmProjectDeleteDialog.cs \
MonoDevelop.Ide.Projects/DefaultPolicyOptionsDialog.cs \
MonoDevelop.Ide.Projects/DeleteConfigDialog.cs \
- MonoDevelop.Ide.Projects/ExportProjectDialog.cs \
MonoDevelop.Ide.Projects/ExportProjectPolicyDialog.cs \
+ MonoDevelop.Ide.Projects/ExportSolutionDialog.cs \
MonoDevelop.Ide.Projects/FeatureSelectorDialog.cs \
MonoDevelop.Ide.Projects/ImportProjectPolicyDialog.cs \
MonoDevelop.Ide.Projects/IncludeNewFilesDialog.cs \