diff options
author | Rob Mensching <rob@firegiant.com> | 2022-10-14 14:27:03 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2022-10-15 11:45:54 -0700 |
commit | a3af25607b56f5ecf21d6712a8367217e5c43eb0 (patch) | |
tree | 213634eab88ea51ab6775ea49df85a73a0f54287 /src/api | |
parent | 08f53f409020b12dffaa2aeefa943b667a4b9328 (diff) | |
download | wix-a3af25607b56f5ecf21d6712a8367217e5c43eb0.tar.gz wix-a3af25607b56f5ecf21d6712a8367217e5c43eb0.tar.bz2 wix-a3af25607b56f5ecf21d6712a8367217e5c43eb0.zip |
Use "wixext4" instead of "tools" as the root folder in ".wixext.nupkg"s
Fixes 6944
Diffstat (limited to 'src/api')
-rw-r--r-- | src/api/wix/WixToolset.Extensibility/Services/IExtensionManager.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/api/wix/WixToolset.Extensibility/Services/IExtensionManager.cs b/src/api/wix/WixToolset.Extensibility/Services/IExtensionManager.cs index fe939a59..ef569a64 100644 --- a/src/api/wix/WixToolset.Extensibility/Services/IExtensionManager.cs +++ b/src/api/wix/WixToolset.Extensibility/Services/IExtensionManager.cs | |||
@@ -40,6 +40,12 @@ namespace WixToolset.Extensibility.Services | |||
40 | IReadOnlyCollection<IExtensionCacheLocation> GetCacheLocations(); | 40 | IReadOnlyCollection<IExtensionCacheLocation> GetCacheLocations(); |
41 | 41 | ||
42 | /// <summary> | 42 | /// <summary> |
43 | /// Gets the root folder name used in extension's package. | ||
44 | /// </summary> | ||
45 | /// <returns>Root folder name to find extension in a package.</returns> | ||
46 | string GetExtensionPackageRootFolderName(); | ||
47 | |||
48 | /// <summary> | ||
43 | /// Gets extensions of specified type from factories loaded into the extension manager. | 49 | /// Gets extensions of specified type from factories loaded into the extension manager. |
44 | /// </summary> | 50 | /// </summary> |
45 | /// <typeparam name="T">Type of extension to get.</typeparam> | 51 | /// <typeparam name="T">Type of extension to get.</typeparam> |