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

github.com/mono/mono-addins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mautil
diff options
context:
space:
mode:
Diffstat (limited to 'mautil')
-rw-r--r--mautil/ChangeLog4
-rw-r--r--mautil/Main.cs5
2 files changed, 7 insertions, 2 deletions
diff --git a/mautil/ChangeLog b/mautil/ChangeLog
index b06003d..6f88c9a 100644
--- a/mautil/ChangeLog
+++ b/mautil/ChangeLog
@@ -1,3 +1,7 @@
+2009-08-21 Lluis Sanchez Gual <lluis@novell.com>
+
+ * Main.cs: Track api changes.
+
2009-08-20 Lluis Sanchez Gual <lluis@novell.com>
* Main.cs: Track api changes.
diff --git a/mautil/Main.cs b/mautil/Main.cs
index 8f5a304..61238fb 100644
--- a/mautil/Main.cs
+++ b/mautil/Main.cs
@@ -73,11 +73,12 @@ namespace mautil
Console.WriteLine ("The --registry and --path options can't be used when --package is specified.");
return 1;
}
- reg = SetupService.GetRegistryForApplication (package);
- if (reg == null) {
+ Application app = SetupService.GetExtensibleApplication (package);
+ if (app == null) {
Console.WriteLine ("The package could not be found or does not provide add-in registry information.");
return 1;
}
+ reg = app.Registry;
}
else {
if (startupPath == null)