From a982f009d3d2c923b3b3ca0737bb8186a5850825 Mon Sep 17 00:00:00 2001 From: Lluis Sanchez Date: Fri, 21 Aug 2009 09:37:12 +0000 Subject: * 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 --- mautil/ChangeLog | 4 ++++ mautil/Main.cs | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-) (limited to 'mautil') 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 + + * Main.cs: Track api changes. + 2009-08-20 Lluis Sanchez Gual * 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) -- cgit v1.2.3