main
cs 23 lines 711 Bytes
Raw
1 // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3 namespace WixToolset.Extensibility
4 {
5 using WixToolset.Data;
6 using WixToolset.Extensibility.Data;
7
8 /// <summary>
9 /// Interface all linker extensions implement.
10 /// </summary>
11 public interface ILinkerExtension
12 {
13 /// <summary>
14 /// Called before linking occurs.
15 /// </summary>
16 void PreLink(ILinkContext context);
17
18 /// <summary>
19 /// Called after all linking occurs.
20 /// </summary>
21 void PostLink(Intermediate intermediate);
22 }
23 }