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:
authorLluis Sanchez <lluis@novell.com>2009-08-21 13:37:12 +0400
committerLluis Sanchez <lluis@novell.com>2009-08-21 13:37:12 +0400
commita982f009d3d2c923b3b3ca0737bb8186a5850825 (patch)
treeb460e335cd2a0b3675f8f1205eeb317cdd0e778e /mautil
parent1dad9f043c265f7360aa6940bd50d81fdee137da (diff)
* mautil/Main.cs:
* Mono.Addins.MSBuild/ResolveAddinReferences.cs: Track api changes. * Mono.Addins.Setup/Mono.Addins.Setup/SetupService.cs: Applications can now register a test command to be used for testing add-ins. Don't use the pkg-config command, use instead the PcFileCache. * Mono.Addins.Setup/Mono.Addins.Setup/PcFileCache.cs: Updated. svn path=/trunk/mono-addins/; revision=140410
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)